diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b9fe1a7
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,148 @@
+#########################
+# .gitignore file for Xcode4 / OS X Source projects
+#
+# Version 2.0
+# For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects
+#
+# 2013 updates:
+# - fixed the broken "save personal Schemes"
+#
+# NB: if you are storing "built" products, this WILL NOT WORK,
+# and you should use a different .gitignore (or none at all)
+# This file is for SOURCE projects, where there are many extra
+# files that we want to exclude
+#
+#########################
+
+#####
+# OS X temporary files that should never be committed
+
+.DS_Store
+*.swp
+*.lock
+
+pebble/build
+aa/build
+
+.vagrant
+
+####
+# Xcode temporary files that should never be committed
+#
+# NB: NIB/XIB files still exist even on Storyboard projects, so we want this...
+
+*~.nib
+
+
+####
+# Xcode build files -
+#
+# NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "DerivedData"
+
+DerivedData/
+
+# NB: slash on the end, so we only remove the FOLDER, not any files that were badly named "build"
+
+## / /build/
+
+
+#####
+# Xcode private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups)
+#
+# This is complicated:
+#
+# SOMETIMES you need to put this file in version control.
+# Apple designed it poorly - if you use "custom executables", they are
+# saved in this file.
+# 99% of projects do NOT use those, so they do NOT want to version control this file.
+# ..but if you're in the 1%, comment out the line "*.pbxuser"
+
+*.pbxuser
+*.mode1v3
+*.mode2v3
+*.perspectivev3
+# NB: also, whitelist the default ones, some projects need to use these
+!default.pbxuser
+!default.mode1v3
+!default.mode2v3
+!default.perspectivev3
+
+
+####
+# Xcode 4 - semi-personal settings
+#
+#
+# OPTION 1: ---------------------------------
+# throw away ALL personal settings (including custom schemes!
+# - unless they are "shared")
+#
+# NB: this is exclusive with OPTION 2 below
+xcuserdata
+
+# OPTION 2: ---------------------------------
+# get rid of ALL personal settings, but KEEP SOME OF THEM
+# - NB: you must manually uncomment the bits you want to keep
+#
+# NB: this is exclusive with OPTION 1 above
+#
+#xcuserdata/**/*
+
+# (requires option 2 above): Personal Schemes
+#
+#!xcuserdata/**/xcschemes/*
+
+####
+# XCode 4 workspaces - more detailed
+#
+# Workspaces are important! They are a core feature of Xcode - don't exclude them :)
+#
+# Workspace layout is quite spammy. For reference:
+#
+# /(root)/
+# /(project-name).xcodeproj/
+# project.pbxproj
+# /project.xcworkspace/
+# contents.xcworkspacedata
+# /xcuserdata/
+# /(your name)/xcuserdatad/
+# UserInterfaceState.xcuserstate
+# /xcsshareddata/
+# /xcschemes/
+# (shared scheme name).xcscheme
+# /xcuserdata/
+# /(your name)/xcuserdatad/
+# (private scheme).xcscheme
+# xcschememanagement.plist
+#
+#
+
+####
+# Xcode 4 - Deprecated classes
+#
+# Allegedly, if you manually "deprecate" your classes, they get moved here.
+#
+# We're using source-control, so this is a "feature" that we do not want!
+
+*.moved-aside
+
+
+####
+# UNKNOWN: recommended by others, but I can't discover what these files are
+#
+# ...none. Everything is now explained.
+.lock-waf_darwin_build
+
+.idea
+
+Pods
+*.xcworkspace
+
+target
+
+journal
+snapshots
+
+native.iml
+
+checkpoint
+
diff --git a/.java-version b/.java-version
new file mode 100644
index 0000000..6259340
--- /dev/null
+++ b/.java-version
@@ -0,0 +1 @@
+1.8
diff --git a/.jvmopts b/.jvmopts
new file mode 100644
index 0000000..5301aa7
--- /dev/null
+++ b/.jvmopts
@@ -0,0 +1,4 @@
+-XX:MaxMetaspaceSize=256m
+-Xss2m
+-Xms1g
+-Xmx1g
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..0245f95
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,33 @@
+pipeline {
+ agent {
+ label 'sbt-slave'
+ }
+
+ stages {
+ stage('Cross Scala Build Pipeline') {
+ steps {
+ ansiColor('xterm') {
+ script {
+ // The following values need to be synced with those in build.sbt and CommonProject.scala
+ def crossScalaVersions = ["2.11.12", "2.12.4"]
+ crossScalaVersions.each { SCALA_VERSION ->
+ def scalaVersion = SCALA_VERSION.substring(0, 4)
+ sh "sbt ++$SCALA_VERSION clean compile test:compile doc"
+ sh "sbt ++$SCALA_VERSION coverage test"
+ sh "sbt ++$SCALA_VERSION coverageReport"
+ sh "sbt ++$SCALA_VERSION coverageAggregate"
+ publishHTML([
+ allowMissing : false,
+ alwaysLinkToLastBuild: false,
+ keepAll : true,
+ reportDir : "target/scala-$scalaVersion/scoverage-report",
+ reportFiles : "index.html",
+ reportName : "Scala $scalaVersion Unit Test Coverage Report"
+ ])
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/LICENSE b/LICENSE
index 261eeb9..d645695 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,3 +1,4 @@
+
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..9b16a52
--- /dev/null
+++ b/README.md
@@ -0,0 +1,16 @@
+# Logging Testkit
+
+TODO:
+
+# Publishing and Releasing
+
+Once we have merged a set of feature branches into the `master` branch and are ready to cut a release:
+```
+git tag -s vX.Y.Z
+git push -tags
+sbt ghpagesPushSite
+sbt "+ publishSigned"
+sbt sonatypeRelease
+```
+
+Code should now be available from Maven Central at version X.Y.Z.
diff --git a/build.sbt b/build.sbt
new file mode 100644
index 0000000..a67ca9b
--- /dev/null
+++ b/build.sbt
@@ -0,0 +1,53 @@
+// Copyright 2018 Cake Solutions Limited
+
+import Dependencies._
+
+enablePlugins(GitBranchPrompt)
+enablePlugins(GitVersioning)
+enablePlugins(SiteScaladocPlugin)
+
+// The following values need to be synced with those in Jenkinsfile
+crossScalaVersions := Seq("2.11.12", "2.12.4")
+scalaVersion := crossScalaVersions.value.head
+
+Publish.settings
+
+git.useGitDescribe := true
+ivyLoggingLevel := UpdateLogging.Quiet
+
+lazy val core = project.in(file("core"))
+ .settings(CommonProject.settings)
+ .settings(ScalaDoc.settings)
+ .settings(
+ name := "logging-testkit",
+ publishArtifact in (Test, packageBin) := true,
+ libraryDependencies ++= Seq(
+ circe.core,
+ circe.generic,
+ circe.parser,
+ logback,
+ logging,
+ monix.core,
+ monix.reactive,
+ scalatest % Test,
+ scalacheck % Test
+ ),
+ coverageMinimum := 75
+ )
+
+lazy val docker = project.in(file("instrumentation/docker"))
+ .dependsOn(core % "compile->compile; test->test")
+ .settings(CommonProject.settings)
+ .settings(
+ name := "logging-testkit-docker",
+ coverageMinimum := 70
+ )
+
+lazy val elasticsearch = project.in(file("instrumentation/elasticsearch"))
+ .dependsOn(core % "compile->compile; test->test")
+ .settings(CommonProject.settings)
+ .settings(
+ name := "logging-testkit-elasticsearch",
+ libraryDependencies += aws.logs,
+ coverageMinimum := 100
+ )
diff --git a/core/src/main/scala/net/cakesolutions/testkit/config/Configuration.scala b/core/src/main/scala/net/cakesolutions/testkit/config/Configuration.scala
new file mode 100644
index 0000000..5cdb469
--- /dev/null
+++ b/core/src/main/scala/net/cakesolutions/testkit/config/Configuration.scala
@@ -0,0 +1,37 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.config
+
+import scala.concurrent.duration._
+
+import net.cakesolutions.testkit.config.Environment.Optional
+
+/**
+ * Library configuration.
+ */
+object Configuration {
+ object Logging {
+ /**
+ * Logger name.
+ */
+ val name: String = "LoggingTestkit"
+ }
+
+ object Timeout {
+ /**
+ * @see net.cakesolutions.testkit.config.Environment.Optional.TIMEOUT_DELAY
+ */
+ val delay: FiniteDuration = Optional.TIMEOUT_DELAY.withDefault(0.seconds)
+
+ /**
+ * @see net.cakesolutions.testkit.config.Environment.Optional.TIMEOUT_PERIOD
+ */
+ val period: FiniteDuration = Optional.TIMEOUT_PERIOD.withDefault(100.milliseconds)
+ }
+
+ private implicit class ConfigurationHelper(value: Option[String]) {
+ def withDefault(default: FiniteDuration): FiniteDuration = {
+ value.map(Duration(_)).collect { case d: FiniteDuration => d }.getOrElse(default)
+ }
+ }
+}
diff --git a/core/src/main/scala/net/cakesolutions/testkit/config/Environment.scala b/core/src/main/scala/net/cakesolutions/testkit/config/Environment.scala
new file mode 100644
index 0000000..708f145
--- /dev/null
+++ b/core/src/main/scala/net/cakesolutions/testkit/config/Environment.scala
@@ -0,0 +1,32 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.config
+
+/**
+ * DevOps environment variable interface
+ *
+ * Without exception, **all** entries in here should be fully documented!
+ */
+object Environment {
+ /**
+ * Required configuration settings are placed here
+ */
+ object Required {
+
+ }
+
+ /**
+ * Optional configuration settings are placed here (these may have sensible
+ * default values defined **elsewhere**)
+ */
+ object Optional {
+ /**
+ * Duration that we wait for before allowing monitor timeout's to execute.
+ */
+ val TIMEOUT_DELAY: Option[String] = sys.env.get("TIMEOUT_DELAY")
+ /**
+ * Periodicity with which monitor timeouts are checked for expiration.
+ */
+ val TIMEOUT_PERIOD: Option[String] = sys.env.get("TIMEOUT_PERIOD")
+ }
+}
diff --git a/core/src/main/scala/net/cakesolutions/testkit/logging/LineLoggingSource.scala b/core/src/main/scala/net/cakesolutions/testkit/logging/LineLoggingSource.scala
new file mode 100644
index 0000000..2e21707
--- /dev/null
+++ b/core/src/main/scala/net/cakesolutions/testkit/logging/LineLoggingSource.scala
@@ -0,0 +1,71 @@
+// Copyright 2018 Cake Solutions Limited
+// Copyright 2017 Carl Pulley
+
+package net.cakesolutions.testkit.logging
+
+import scala.concurrent.Promise
+import scala.util.control.NonFatal
+
+import com.typesafe.scalalogging.Logger
+import monix.execution.{Cancelable, Scheduler}
+import monix.reactive.{Observable, OverflowStrategy}
+import monix.reactive.observers.Subscriber
+
+/**
+ * Interface for defining logging sources.
+ *
+ * @tparam LogLine type of logging event representing a single log line
+ */
+trait LineLoggingSource[LogLine] {
+
+ private val log = Logger("LoggingTestkit")
+
+ /**
+ * Primary interface method that specific logging sources will need to implement.
+ *
+ * @param subscriber subscriber that is to receive logging events
+ * @param cancelP promise used to communicate that the subscriber has cancelled their subscription
+ * @param scheduler (implicit) scheduler that the subscriber uses for running polling events on
+ */
+ protected def subscriberPolling(
+ subscriber: Subscriber[LogLine],
+ cancelP: Promise[Unit]
+ )(
+ implicit scheduler: Scheduler
+ ): Unit
+
+ /**
+ * For project Docker containers, wrap their logging as an observable.
+ *
+ * @param scheduler (implicit) scheduler that the subscriber uses for running polling events on
+ * @return observable of observed logging lines
+ */
+ final def source()(implicit scheduler: Scheduler): Observable[LogLine] =
+ Observable.create[LogLine](OverflowStrategy.Unbounded) { subscriber =>
+ val cancelP = Promise[Unit]
+
+ try {
+ scheduler.execute(new Runnable {
+ def run(): Unit = {
+ subscriberPolling(subscriber, cancelP)
+ }
+ })
+ } catch {
+ case NonFatal(exn) =>
+ log.error("Unexpected exception", exn)
+ if (! cancelP.isCompleted) {
+ cancelP.failure(exn)
+ subscriber.onError(exn)
+ }
+ }
+
+ new Cancelable {
+ override def cancel(): Unit = {
+ if (! cancelP.isCompleted) {
+ cancelP.success(())
+ subscriber.onComplete()
+ }
+ }
+ }
+ }
+}
diff --git a/core/src/main/scala/net/cakesolutions/testkit/logging/LogEvent.scala b/core/src/main/scala/net/cakesolutions/testkit/logging/LogEvent.scala
new file mode 100644
index 0000000..1b92201
--- /dev/null
+++ b/core/src/main/scala/net/cakesolutions/testkit/logging/LogEvent.scala
@@ -0,0 +1,16 @@
+// Copyright 2018 Cake Solutions Limited
+// Copyright 2017 Carl Pulley
+
+package net.cakesolutions.testkit.logging
+
+import java.time.ZonedDateTime
+
+/**
+ * Log event that has been parsed and unmarshalled into a type instance.
+ *
+ * @param time date and time for the logging event
+ * @param image identifier for the Docker container from which logging has originated
+ * @param message unmarshalled instance of the parsed logging event
+ * @tparam A type of the unmarshalled logging instance
+ */
+final case class LogEvent[A](time: ZonedDateTime, image: String, message: A)
diff --git a/core/src/main/scala/net/cakesolutions/testkit/monitor/Action.scala b/core/src/main/scala/net/cakesolutions/testkit/monitor/Action.scala
new file mode 100644
index 0000000..9541c82
--- /dev/null
+++ b/core/src/main/scala/net/cakesolutions/testkit/monitor/Action.scala
@@ -0,0 +1,67 @@
+// Copyright 2018 Cake Solutions Limited
+// Copyright 2016-2017 Carl Pulley
+
+package net.cakesolutions.testkit.monitor
+
+import scala.concurrent.duration.FiniteDuration
+
+/**
+ * Type of action that an IOAutomata may perform on each of its transitions.
+ *
+ * @tparam IOState IOAutomata state type
+ */
+sealed trait Action[IOState] {
+ /**
+ * Notification event that is to be emitted.
+ *
+ * @return (optional) notification event that is to be emitted
+ */
+ def emit: Option[Notify]
+}
+
+/**
+ * Used should the IOAutomata need to transition to another state.
+ *
+ * @param state state IOAutomata will transition to
+ * @param forMax (optional) time we can stay in the next state for
+ * @param emit (optional) action that will be emitted should we transition to the next state
+ * @tparam IOState IOAutomata state type
+ */
+final case class Goto[IOState](state: IOState, forMax: Option[FiniteDuration] = None, emit: Option[Notify] = None) extends Action[IOState]
+object Goto {
+ def apply[IOState](state: IOState, forMax: FiniteDuration): Goto[IOState] = {
+ Goto(state, Some(forMax), None)
+ }
+
+ def apply[IOState](state: IOState, emit: Notify): Goto[IOState] = {
+ Goto(state, None, Some(emit))
+ }
+
+ def apply[IOState](state: IOState, forMax: FiniteDuration, emit: Notify): Goto[IOState] = {
+ Goto(state, Some(forMax), Some(emit))
+ }
+}
+
+/**
+ * Used should the IOAutomata need to remain or stay in the current state.
+ *
+ * @param emit (optional) action that will be emitted should we stay in the current state
+ * @tparam IOState IOAutomata state type
+ */
+final case class Stay[IOState](emit: Option[Notify] = None) extends Action[IOState]
+object Stay {
+ def apply[IOState](emit: Notify): Stay[IOState] = {
+ Stay(Some(emit))
+ }
+}
+
+/**
+ * Used should the IOAutomata need to terminate or stop in the current state. The success or failure
+ * of this termination is determined by the notification action that is emitted.
+ *
+ * @param toEmit action that will be emitted should we terminate or stop
+ * @tparam IOState IOAutomata state type
+ */
+final case class Stop[IOState](toEmit: Notify) extends Action[IOState] {
+ override val emit = Some(toEmit)
+}
diff --git a/core/src/main/scala/net/cakesolutions/testkit/monitor/IOAutomata.scala b/core/src/main/scala/net/cakesolutions/testkit/monitor/IOAutomata.scala
new file mode 100644
index 0000000..3b28713
--- /dev/null
+++ b/core/src/main/scala/net/cakesolutions/testkit/monitor/IOAutomata.scala
@@ -0,0 +1,22 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.monitor
+
+import scala.concurrent.duration.FiniteDuration
+
+/**
+ * Models an IO automata.
+ *
+ * @param initialState state that monitoring IOAutomata will start in
+ * @param transition partial function describing the monitoring behaviour as an IOAutomata
+ * @param initialTimeout (optional) timeout for how long we may linger in the starting state
+ * @param overallTimeout (optional) timeout for how long this IOAutomata will monitor
+ * @tparam IOState IOAutomata state type
+ * @tparam Event event type
+ */
+final case class IOAutomata[IOState, Event](
+ initialState: IOState,
+ transition: Behaviour[IOState, Event],
+ initialTimeout: Option[FiniteDuration] = None,
+ overallTimeout: Option[FiniteDuration] = None
+)
diff --git a/core/src/main/scala/net/cakesolutions/testkit/monitor/Interactions.scala b/core/src/main/scala/net/cakesolutions/testkit/monitor/Interactions.scala
new file mode 100644
index 0000000..ba9ce95
--- /dev/null
+++ b/core/src/main/scala/net/cakesolutions/testkit/monitor/Interactions.scala
@@ -0,0 +1,63 @@
+// Copyright 2018 Cake Solutions Limited
+// Copyright 2016-2017 Carl Pulley
+
+package net.cakesolutions.testkit.monitor
+
+object Interactions {
+
+ /**
+ * Input events that IOAutomata monitors will consume.
+ *
+ * @tparam Event type of event that we are to observe
+ */
+ sealed trait EventIn[+Event]
+
+ /**
+ * Internal events.
+ *
+ * @tparam Event type of event that we are to observe
+ */
+ sealed trait EventInternal[+Event]
+
+ /**
+ * Output actions.
+ *
+ * @tparam Event type of event that we are to observe
+ */
+ sealed trait ActionOut[+Event]
+
+ /**
+ * Observed an event flow.
+ *
+ * @param event event that we observed
+ * @tparam Event type of event that we are to observe
+ */
+ final case class Observe[Event](event: Event) extends EventIn[Event] with EventInternal[Event] with ActionOut[Event]
+
+ private[monitor] case object Tick extends EventInternal[Nothing]
+
+ /**
+ * The IOAutomata monitor timed out whilst waiting in some state.
+ */
+ case object StateTimeout extends Exception("StateTimeout") with EventIn[Nothing] with EventInternal[Nothing] with ActionOut[Nothing]
+
+ /**
+ * The IOAutomata monitor has exceeded its overall timeout.
+ */
+ case object MonitorTimeout extends Exception("MonitorTimeout") with EventIn[Nothing] with EventInternal[Nothing] with ActionOut[Nothing]
+
+ /**
+ * Error signal indicating that the IOAutomata was not defined for a given event.
+ *
+ * @param event event that the IOAutomata was not defined for
+ * @tparam Event type of event that we are to observe
+ */
+ final case class TransitionFailure[Event](event: Event) extends Exception(s"TransitionFailure($event)") with ActionOut[Nothing]
+
+ /**
+ * Error signal wrapping uncaught exceptions.
+ *
+ * @param exn throwable that was caught
+ */
+ final case class UnexpectedException(exn: Throwable) extends Exception(s"UnexpectedException($exn)") with ActionOut[Nothing]
+}
diff --git a/core/src/main/scala/net/cakesolutions/testkit/monitor/MonitorState.scala b/core/src/main/scala/net/cakesolutions/testkit/monitor/MonitorState.scala
new file mode 100644
index 0000000..a0b1418
--- /dev/null
+++ b/core/src/main/scala/net/cakesolutions/testkit/monitor/MonitorState.scala
@@ -0,0 +1,25 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.monitor
+
+import scala.concurrent.duration.Deadline
+
+import monix.reactive.{Notification, Observable}
+
+import net.cakesolutions.testkit.monitor.Interactions.ActionOut
+
+private[monitor] sealed trait MonitorState[IOState]
+
+private[monitor] final case class RunningState[IOState](
+ state: IOState,
+ stateTimeout: Option[Deadline] = None,
+ overallTimeout: Option[Deadline] = None,
+ actions: Observable[Notification[ActionOut[Notify]]] = Observable.empty
+) extends MonitorState[IOState]
+
+private[monitor] final case class ShutdownState[IOState](
+ state: IOState,
+ stateTimeout: Option[Deadline] = None,
+ overallTimeout: Option[Deadline] = None,
+ actions: Observable[Notification[ActionOut[Notify]]] = Observable.empty
+) extends MonitorState[IOState]
diff --git a/core/src/main/scala/net/cakesolutions/testkit/monitor/Notify.scala b/core/src/main/scala/net/cakesolutions/testkit/monitor/Notify.scala
new file mode 100644
index 0000000..cefaacc
--- /dev/null
+++ b/core/src/main/scala/net/cakesolutions/testkit/monitor/Notify.scala
@@ -0,0 +1,38 @@
+// Copyright 2018 Cake Solutions Limited
+// Copyright 2016-2017 Carl Pulley
+
+package net.cakesolutions.testkit.monitor
+
+/**
+ * Notification action type
+ */
+sealed trait Notify {
+ /**
+ * Negate the current notification action.
+ *
+ * @return negated or inverted notification action
+ */
+ def invert: Notify
+}
+
+/**
+ * Notification action that indicates a successful or accepting observation.
+ *
+ * @param failures should this action result from negation, then we store the past failures
+ */
+final case class Accept(failures: String*) extends Notify {
+ override def invert: Notify = {
+ Fail(failures: _*)
+ }
+}
+
+/**
+ * Notification action that indicates a failing observation.
+ *
+ * @param reasons reasons for this failure
+ */
+final case class Fail(reasons: String*) extends Exception(reasons.mkString(", ")) with Notify {
+ override def invert: Notify = {
+ Accept(reasons: _*)
+ }
+}
diff --git a/core/src/main/scala/net/cakesolutions/testkit/monitor/package.scala b/core/src/main/scala/net/cakesolutions/testkit/monitor/package.scala
new file mode 100644
index 0000000..f2fb1e1
--- /dev/null
+++ b/core/src/main/scala/net/cakesolutions/testkit/monitor/package.scala
@@ -0,0 +1,179 @@
+// Copyright 2018 Cake Solutions Limited
+// Copyright 2016-2017 Carl Pulley
+
+package net.cakesolutions.testkit
+
+import scala.concurrent.duration._
+
+import com.typesafe.scalalogging.Logger
+import monix.reactive.Observable
+import monix.reactive.Notification.{OnComplete, OnError, OnNext}
+
+import net.cakesolutions.testkit.config.Configuration
+
+package object monitor {
+
+ import Configuration._
+ import Interactions._
+
+ private val logger = Logger(Logging.name)
+
+ /**
+ * Type for describing IOAutomata state machines using partial functions.
+ *
+ * @tparam IOState IOAutomata state type
+ * @tparam Event event type
+ */
+ type Behaviour[IOState, Event] =
+ PartialFunction[IOState, PartialFunction[EventIn[Event], Action[IOState]]]
+
+ /**
+ * Implicit for adding `monitor` methods to observables.
+ *
+ * @param upstream upstream observable that will emit events
+ * @tparam IOState IOAutomata state type
+ * @tparam Event event type
+ */
+ implicit class ObservableMonitor[IOState, Event](upstream: Observable[Event]) {
+
+ private val clock: Observable[EventInternal[Event]] =
+ Observable.timerRepeated(Timeout.delay, Timeout.period, Tick)
+
+ /**
+ * Using an IOAutomata, monitor the upstream observable and emit notification actions downstream.
+ *
+ * @param initialState state that monitoring IOAutomata will start in
+ * @param initialTimeout (optional) timeout for how long we may linger in the starting state
+ * @param overallTimeout (optional) timeout for how long this IOAutomata will monitor
+ * @param transition partial function describing the monitoring behaviour as an IOAutomata
+ * @return observable of notification actions generated by monitoring the upstream event observable
+ */
+ def monitor(
+ initialState: IOState,
+ initialTimeout: Option[FiniteDuration] = None,
+ overallTimeout: Option[FiniteDuration] = None
+ )(
+ transition: Behaviour[IOState, Event]
+ ): Observable[ActionOut[Notify]] = {
+ Observable.merge[EventInternal[Event]](upstream.asEventInternal, clock)
+ .debugLog("IN")
+ .materialize
+ .scan[MonitorState[IOState]](RunningState(initialState).timeout(initialTimeout).overall(overallTimeout)) {
+ case (current: RunningState[IOState], obs@OnNext(event: Observe[Event]))
+ if transition.isDefinedAt(current.state) &&
+ transition(current.state).isDefinedAt(event) =>
+ val result = next(transition)(current, event)
+ logger.trace(s"monitor: $obs transitions from $current to $result")
+ result
+ case (current: RunningState[IOState], obs@OnNext(Tick))
+ if current.stateTimeout.exists(_.isOverdue()) &&
+ transition.isDefinedAt(current.state) &&
+ transition(current.state).isDefinedAt(StateTimeout) =>
+ val result = next(transition)(current, StateTimeout)
+ logger.trace(s"monitor: $obs transitions from $current to $result")
+ result
+ case (current: RunningState[IOState], obs@OnNext(Tick))
+ if current.overallTimeout.exists(_.isOverdue()) &&
+ transition.isDefinedAt(current.state) &&
+ transition(current.state).isDefinedAt(MonitorTimeout) =>
+ val result = next(transition)(current, MonitorTimeout)
+ logger.trace(s"monitor: $obs transitions from $current to $result")
+ result
+ case (current: RunningState[IOState], obs@OnComplete) =>
+ logger.trace(s"monitor: $obs transitions from $current to COMPLETE")
+ complete(current.state)
+ case (current: RunningState[IOState], obs@OnNext(event: Observe[Event])) =>
+ logger.trace(s"monitor: $obs transitions from $current to ERROR")
+ error(current.state, TransitionFailure(event))
+ case (current: RunningState[IOState], obs@OnError(exn)) =>
+ logger.trace(s"monitor: $obs transitions from $current to ERROR")
+ error(current.state, exn)
+ case (current: RunningState[IOState], obs@OnNext(Tick))
+ if current.stateTimeout.exists(_.isOverdue()) =>
+ logger.trace(s"deadline: $obs transitions from $current to ERROR")
+ error(current.state, StateTimeout)
+ case (current: RunningState[IOState], obs@OnNext(Tick))
+ if current.overallTimeout.exists(_.isOverdue()) =>
+ logger.trace(s"deadline: $obs transitions from $current to ERROR")
+ error(current.state, MonitorTimeout)
+ case (current: RunningState[IOState], obs@OnNext(Tick)) =>
+ logger.trace(s"deadline: $obs transitions from $current to ERROR")
+ current
+ case (current: ShutdownState[IOState], obs) =>
+ logger.trace(s"monitor: $obs transitions from $current to SHUTDOWN")
+ ShutdownState(current.state)
+ }
+ .flatMap {
+ case state: RunningState[IOState] =>
+ state.actions
+ case state: ShutdownState[IOState] =>
+ state.actions
+ }
+ .dematerialize
+ .debugLog("OUT")
+ }
+
+ /**
+ * @see net.cakesolutions.testkit.monitor.ObservableMonitor#monitor
+ */
+ def monitor(automata: IOAutomata[IOState, Event]): Observable[ActionOut[Notify]] = {
+ monitor(automata.initialState, automata.initialTimeout, automata.overallTimeout)(automata.transition)
+ }
+
+ private def next(transition: Behaviour[IOState, Event])(state: RunningState[IOState], event: EventIn[Event]): MonitorState[IOState] = {
+ transition(state.state)(event) match {
+ case Goto(nextState, duration, action) =>
+ state.copy(state = nextState).output(action).timeout(duration)
+ case Stay(action) =>
+ state.output(action)
+ case Stop(action) =>
+ ShutdownState(state.state, actions = Observable(OnNext(Observe(action)), OnComplete))
+ }
+ }
+
+ private def error(state: IOState, exn: Throwable): ShutdownState[IOState] = {
+ ShutdownState(state, actions = Observable(OnError(exn)))
+ }
+
+ private def complete(state: IOState): ShutdownState[IOState] = {
+ ShutdownState(state, actions = Observable(OnComplete))
+ }
+ }
+
+ private implicit class EventInMap[Event](upstream: Observable[Event]) {
+ def debugLog(tag: String): Observable[Event] = {
+ upstream
+ .materialize
+ .zipWithIndex
+ .map {
+ case (event, index) =>
+ logger.debug(s"$tag-$index: $event")
+ event
+ }
+ .dematerialize
+ }
+
+ def asEventInternal: Observable[EventInternal[Event]] = {
+ upstream.map { event: Event =>
+ Observe(event)
+ }
+ }
+ }
+
+ private implicit class TimeoutBehaviour[IOState](state: RunningState[IOState]) {
+ def output(emit: Option[Notify]): RunningState[IOState] = emit match {
+ case Some(action) =>
+ RunningState(state.state, overallTimeout = state.overallTimeout, actions = Observable(OnNext(Observe[Notify](action))))
+ case None =>
+ RunningState(state.state, overallTimeout = state.overallTimeout)
+ }
+
+ def timeout(timeout: Option[FiniteDuration]): RunningState[IOState] = {
+ state.copy(stateTimeout = timeout.map(_.fromNow))
+ }
+
+ def overall(timeout: Option[FiniteDuration]): RunningState[IOState] = {
+ state.copy(overallTimeout = timeout.map(_.fromNow))
+ }
+ }
+}
diff --git a/core/src/test/resources/application.conf b/core/src/test/resources/application.conf
new file mode 100644
index 0000000..1c9967c
--- /dev/null
+++ b/core/src/test/resources/application.conf
@@ -0,0 +1,4 @@
+akka {
+ event-handlers = ["akka.event.slf4j.Slf4jEventHandler"]
+ loglevel = "DEBUG"
+}
diff --git a/core/src/test/resources/logback.xml b/core/src/test/resources/logback.xml
new file mode 100644
index 0000000..8e77517
--- /dev/null
+++ b/core/src/test/resources/logback.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+ %d{HH:mm:ss.SSS} [%-5level] %logger{36} - %msg%n%rEx
+
+
+
+
+
+
+
+
+
+
+
diff --git a/core/src/test/scala/net/cakesolutions/testkit/generators/JsonGenerators.scala b/core/src/test/scala/net/cakesolutions/testkit/generators/JsonGenerators.scala
new file mode 100644
index 0000000..799276e
--- /dev/null
+++ b/core/src/test/scala/net/cakesolutions/testkit/generators/JsonGenerators.scala
@@ -0,0 +1,62 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.generators
+
+import io.circe.Json
+import org.scalacheck.{Arbitrary, Gen}
+
+object JsonGenerators {
+ val nullGen: Gen[Json] = Json.Null
+
+ val boolGen: Gen[Json] = for {
+ value <- Arbitrary.arbitrary[Boolean]
+ } yield Json.fromBoolean(value)
+
+ val doubleGen: Gen[Json] = for {
+ value <- Arbitrary.arbitrary[Double] suchThat(value => (!java.lang.Double.isNaN(value)) && (!java.lang.Double.isInfinite(value)))
+ } yield Json.fromDouble(value).get
+
+ val intGen: Gen[Json] = for {
+ value <- Arbitrary.arbitrary[Int]
+ } yield Json.fromInt(value)
+
+ val stringGen: Gen[Json] = for {
+ value <- Gen.frequency(
+ 1 -> Arbitrary.arbitrary[String],
+ 5 -> Gen.alphaStr
+ )
+ } yield Json.fromString(value)
+
+ val arrayGen: Gen[Json] = for {
+ length <- Gen.choose(1, 10)
+ values <- Gen.listOfN[Json](length, jsonGen)
+ } yield Json.fromValues(values)
+
+ val fieldGen: Gen[(String, Json)] = for {
+ label <- Gen.frequency(
+ 1 -> Arbitrary.arbitrary[String],
+ 10 -> Gen.identifier
+ )
+ json <- jsonGen
+ } yield (label, json)
+
+ val objectGen: Gen[Json] = for {
+ length <- Gen.frequency(
+ 5 -> Gen.choose(1, 20),
+ 2 -> Gen.choose(21, 50),
+ 1 -> Gen.choose(51, 200)
+ )
+ fields <- Gen.listOfN[(String, Json)](length, fieldGen)
+ } yield Json.fromFields(fields)
+
+ def jsonGen: Gen[Json] = Gen.lzy(
+ Gen.frequency(
+ 1 -> nullGen,
+ 100 -> doubleGen,
+ 50 -> stringGen,
+ 100 -> intGen,
+ 10 -> arrayGen,
+ 5 -> objectGen
+ )
+ )
+}
diff --git a/core/src/test/scala/net/cakesolutions/testkit/generators/TestGenerators.scala b/core/src/test/scala/net/cakesolutions/testkit/generators/TestGenerators.scala
new file mode 100644
index 0000000..b8a59fe
--- /dev/null
+++ b/core/src/test/scala/net/cakesolutions/testkit/generators/TestGenerators.scala
@@ -0,0 +1,62 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.generators
+
+import scala.concurrent.duration.Duration
+
+import io.circe.Json
+import org.scalacheck.Gen
+
+import net.cakesolutions.testkit.logging.LogEvent
+import net.cakesolutions.testkit.monitor._
+
+object TestGenerators {
+
+ import Interactions._
+ import JsonGenerators._
+ import ZonedDateTimeGenerator._
+
+ val acceptGen: Gen[Notify] = for {
+ failures <- Gen.listOf(Gen.alphaNumStr)
+ } yield Accept(failures: _*)
+
+ val failGen: Gen[Fail] = for {
+ failures <- Gen.listOf(Gen.alphaNumStr)
+ } yield Fail(failures: _*)
+
+ val notifyGen: Gen[Notify] = Gen.frequency(
+ 1 -> acceptGen,
+ 1 -> failGen
+ )
+
+ def gotoGen[S](stateGen: Gen[S]): Gen[Goto[S]] = for {
+ state <- stateGen
+ forMax <- Gen.option(Gen.choose(Long.MinValue + 1, Long.MaxValue).map(Duration.fromNanos))
+ emit <- Gen.option(notifyGen)
+ } yield new Goto[S](state, forMax, emit)
+
+ def stayGen[S]: Gen[Stay[S]] = for {
+ emit <- Gen.option(notifyGen)
+ } yield Stay[S](emit)
+
+ def stopGen[S]: Gen[Stop[S]] = for {
+ toEmit <- notifyGen
+ } yield Stop[S](toEmit)
+
+ def actionGen[S](stateGen: Gen[S]): Gen[Action[S]] = Gen.frequency(
+ 1 -> stopGen[S],
+ 4 -> stayGen[S],
+ 5 -> gotoGen[S](stateGen)
+ )
+
+ val stateTimeoutGen: Gen[StateTimeout.type] = Gen.const(StateTimeout)
+
+ def eventInGen[E](eventGen: Gen[E]): Gen[EventIn[E]] = for {
+ event <- eventGen
+ } yield Observe[E](event)
+
+ def logEventGen(id: String = "test"): Gen[LogEvent[Json]] = for {
+ time <- zonedDateTimeGen
+ json <- jsonGen
+ } yield LogEvent(time, id, json)
+}
diff --git a/core/src/test/scala/net/cakesolutions/testkit/generators/ZonedDateTimeGenerator.scala b/core/src/test/scala/net/cakesolutions/testkit/generators/ZonedDateTimeGenerator.scala
new file mode 100644
index 0000000..8140992
--- /dev/null
+++ b/core/src/test/scala/net/cakesolutions/testkit/generators/ZonedDateTimeGenerator.scala
@@ -0,0 +1,26 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.generators
+
+import java.time.{Month, Year, ZonedDateTime, ZoneId}
+
+import scala.collection.JavaConverters._
+
+import org.scalacheck.Gen
+
+object ZonedDateTimeGenerator {
+
+ def zonedDateTimeGen: Gen[ZonedDateTime] =
+ for {
+ year <- Gen.choose(-292278994, 292278994)
+ month <- Gen.choose(1, 12)
+ maxDaysInMonth = Month.of(month).length(Year.of(year).isLeap)
+ dayOfMonth <- Gen.choose(1, maxDaysInMonth)
+ hour <- Gen.choose(0, 23)
+ minute <- Gen.choose(0, 59)
+ second <- Gen.choose(0, 59)
+ nanoOfSecond <- Gen.choose(0, 999999999)
+ zoneId <- Gen.oneOf(ZoneId.getAvailableZoneIds.asScala.toList)
+ } yield ZonedDateTime.of(year, month, dayOfMonth, hour, minute, second, nanoOfSecond, ZoneId.of(zoneId))
+
+}
diff --git a/core/src/test/scala/net/cakesolutions/testkit/logging/LoggingSourceTest.scala b/core/src/test/scala/net/cakesolutions/testkit/logging/LoggingSourceTest.scala
new file mode 100644
index 0000000..e47385c
--- /dev/null
+++ b/core/src/test/scala/net/cakesolutions/testkit/logging/LoggingSourceTest.scala
@@ -0,0 +1,29 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.logging
+
+import scala.concurrent.duration._
+
+import io.circe.Json
+import monix.execution.Scheduler.Implicits.global
+import monix.reactive.Observable
+import org.scalatest.{FreeSpec, Matchers}
+import org.scalatest.prop.GeneratorDrivenPropertyChecks
+import org.scalacheck.Gen._
+import net.cakesolutions.testkit.generators.TestGenerators
+import net.cakesolutions.testkit.matchers.ObservableMatcher._
+
+class LoggingSourceTest extends FreeSpec with Matchers with GeneratorDrivenPropertyChecks {
+
+ import TestGenerators._
+
+ implicit val timeout: FiniteDuration = 3.seconds
+
+ "LoggingSource should see all logged events" in {
+ forAll(listOf(logEventGen())) { logEvents =>
+ val logSource = new TestLogSource(Observable(logEvents: _*))
+
+ logSource.source() should observe[LogEvent[Json]](logEvents: _*)
+ }
+ }
+}
diff --git a/core/src/test/scala/net/cakesolutions/testkit/logging/TestLogSource.scala b/core/src/test/scala/net/cakesolutions/testkit/logging/TestLogSource.scala
new file mode 100644
index 0000000..79c41c0
--- /dev/null
+++ b/core/src/test/scala/net/cakesolutions/testkit/logging/TestLogSource.scala
@@ -0,0 +1,28 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.logging
+
+import scala.concurrent.Promise
+
+import monix.execution.{Cancelable, Scheduler}
+import monix.reactive.Observable
+import monix.reactive.observers.Subscriber
+
+import net.cakesolutions.utils.ValueDiscard
+
+class TestLogSource[LogLine](testData: Observable[LogLine]) extends LineLoggingSource[LogLine] {
+
+ /** @inheritdoc*/
+ override protected def subscriberPolling(
+ subscriber: Subscriber[LogLine],
+ cancelP: Promise[Unit]
+ )(
+ implicit scheduler: Scheduler
+ ): Unit = {
+ ValueDiscard[Cancelable] {
+ testData
+ .doOnComplete(() => cancelP.success(()))
+ .subscribe(subscriber)
+ }
+ }
+}
diff --git a/core/src/test/scala/net/cakesolutions/testkit/matchers/ObservableMatcher.scala b/core/src/test/scala/net/cakesolutions/testkit/matchers/ObservableMatcher.scala
new file mode 100644
index 0000000..c95b369
--- /dev/null
+++ b/core/src/test/scala/net/cakesolutions/testkit/matchers/ObservableMatcher.scala
@@ -0,0 +1,96 @@
+// Copyright 2018 Cake Solutions Limited
+// Copyright 2016-2017 Carl Pulley
+
+package net.cakesolutions.testkit.matchers
+
+import java.util.concurrent.TimeoutException
+
+import scala.concurrent._
+import scala.concurrent.duration._
+
+import monix.execution.Scheduler
+import monix.execution.exceptions.UpstreamTimeoutException
+import monix.reactive.{Notification, Observable}
+import monix.reactive.Notification.{OnComplete, OnError, OnNext}
+import org.scalatest.matchers.{Matcher, MatchResult}
+
+private final case class TestFailed[Action](n: Int, action: Action) extends Exception
+private final case class ObservableError(n: Int, cause: Throwable) extends Exception
+private final case class ObservableClosed(n: Int) extends Exception
+
+object ObservableMatcher {
+
+ def observe[Action](actions: Action*)(implicit scheduler: Scheduler, timeout: FiniteDuration) = new Matcher[Observable[Action]] {
+ def apply(obs: Observable[Action]): MatchResult = {
+ val result = Promise[Unit]
+
+ if (actions.isEmpty) {
+ result.success(())
+ } else {
+ obs
+ .timeoutOnSlowUpstream(timeout + 1.second)
+ .materialize
+ .scan[Option[Int]](Some(0)) {
+ case _: (Option[Int], Notification[Action]) if result.isCompleted =>
+ None
+ case (Some(n), OnNext(_)) if n < 0 || n >= actions.length =>
+ result.failure(ObservableError(n, new IndexOutOfBoundsException))
+ None
+ case (Some(n), OnNext(act)) if actions(n) == act =>
+ Some(n + 1)
+ case (Some(n), OnNext(act)) =>
+ result.failure(TestFailed[Action](n, act))
+ None
+ case (Some(n), OnError(exn)) =>
+ result.failure(ObservableError(n, exn))
+ None
+ case (Some(n), OnComplete) if actions.length == n =>
+ result.success(())
+ None
+ case (Some(n), OnComplete) =>
+ result.failure(ObservableClosed(n))
+ None
+ case _ =>
+ None
+ }
+ .subscribe()
+ }
+
+ try {
+ Await.result(result.future, timeout + 1.second)
+ MatchResult(matches = true, "", "")
+ } catch {
+ case _: TimeoutException =>
+ val errMsg = s"After $timeout test timed out"
+ MatchResult(matches = false, errMsg, errMsg)
+ case ObservableError(n, cause: IndexOutOfBoundsException) if n < 0 =>
+ val errMsg = s"Observable emitted an unexpected exception $cause with negative index $n"
+ MatchResult(matches = false, errMsg, errMsg)
+ case ObservableError(n, cause: IndexOutOfBoundsException) if actions.length >= n =>
+ val errMsg = s"Observable emitted an unexpected exception $cause at list index $n (list contained ${actions.length} members!)"
+ MatchResult(matches = false, errMsg, errMsg)
+ case ObservableError(n, _: UpstreamTimeoutException) =>
+ val errMsg = s"After ${timeout + 1.second} failed to observe any events flowing for matching"
+ MatchResult(matches = false, errMsg, errMsg)
+ case ObservableError(0, cause) =>
+ val errMsg = s"Observable emitted an unexpected exception $cause - expected ${actions(0)}"
+ MatchResult(matches = false, errMsg, errMsg)
+ case ObservableError(position, cause) =>
+ val errMsg = s"Observable emitted an unexpected exception $cause - matched ${actions.take(position)} and expected ${actions(position)}"
+ MatchResult(matches = false, errMsg, errMsg)
+ case ObservableClosed(0) =>
+ val errMsg = s"Observable closed prematurely - expected ${actions(0)}"
+ MatchResult(matches = false, errMsg, errMsg)
+ case ObservableClosed(position) =>
+ val errMsg = s"Observable closed prematurely - matched ${actions.take(position)} and expected ${actions(position)}"
+ MatchResult(matches = false, errMsg, errMsg)
+ case TestFailed(0, action) =>
+ val errMsg = s"Test failed to match first event - received $action expected ${actions(0)}"
+ MatchResult(matches = false, errMsg, errMsg)
+ case TestFailed(position, action) =>
+ val errMsg = s"Test matched ${actions.take(position)} and then matching failed - received $action expected ${actions(position)}"
+ MatchResult(matches = false, errMsg, errMsg)
+ }
+ }
+ }
+}
diff --git a/core/src/test/scala/net/cakesolutions/testkit/monitor/EventInTest.scala b/core/src/test/scala/net/cakesolutions/testkit/monitor/EventInTest.scala
new file mode 100644
index 0000000..5b7ea26
--- /dev/null
+++ b/core/src/test/scala/net/cakesolutions/testkit/monitor/EventInTest.scala
@@ -0,0 +1,17 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.monitor
+
+import org.scalatest.prop.GeneratorDrivenPropertyChecks
+import org.scalatest.{FreeSpec, Matchers}
+
+class EventInTest extends FreeSpec with Matchers with GeneratorDrivenPropertyChecks {
+
+ import net.cakesolutions.testkit.generators.TestGenerators._
+
+ "StateTimeout is a Throwable instance" in {
+ forAll(stateTimeoutGen) { timeout =>
+ timeout shouldBe a[Throwable]
+ }
+ }
+}
diff --git a/core/src/test/scala/net/cakesolutions/testkit/monitor/MonitorTest.scala b/core/src/test/scala/net/cakesolutions/testkit/monitor/MonitorTest.scala
new file mode 100644
index 0000000..3141ba6
--- /dev/null
+++ b/core/src/test/scala/net/cakesolutions/testkit/monitor/MonitorTest.scala
@@ -0,0 +1,209 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.monitor
+
+import scala.concurrent.duration._
+
+import monix.execution.Scheduler.Implicits.global
+import monix.reactive.Observable
+import org.scalatest.{FreeSpec, Matchers}
+import org.scalatest.prop.GeneratorDrivenPropertyChecks
+import org.slf4j.{Logger, LoggerFactory}
+
+import net.cakesolutions.testkit.matchers.ObservableMatcher._
+
+class MonitorTest extends FreeSpec with Matchers with GeneratorDrivenPropertyChecks {
+
+ import Interactions._
+
+ implicit val logger: Logger = LoggerFactory.getLogger(getClass)
+ implicit val timeout: FiniteDuration = 3.seconds
+
+ "Simple finite state machine" - {
+ "with no notifications" in {
+ val simple: Behaviour[Int, String] = {
+ case 0 => {
+ case Observe("1") =>
+ Goto(1)
+ }
+ case 1 => {
+ case Observe("2") =>
+ Stop(Accept("stop"))
+ }
+ }
+ val events = Observable("1", "2")
+
+ events.monitor(0)(simple) should observe[ActionOut[Notify]](Observe(Accept("stop")))
+ }
+
+ "with notifications" in {
+ val simple: Behaviour[Int, String] = {
+ case 0 => {
+ case Observe("1") =>
+ Goto(1, Accept("goto-1"))
+ }
+ case 1 => {
+ case Observe("2") =>
+ Stay(Accept("stay"))
+ case Observe("3") =>
+ Stop(Accept("stop"))
+ }
+ }
+ val events = Observable("1", "2", "3")
+
+ events.monitor(0)(simple) should observe[ActionOut[Notify]](Observe(Accept("goto-1")), Observe(Accept("stay")), Observe(Accept("stop")))
+ }
+ }
+
+ "Timed state machine" - {
+ "with no notifications" - {
+ "and no timeouts" in {
+ val timed: Behaviour[Int, String] = {
+ case 0 => {
+ case Observe("1") =>
+ Goto(1, 1.second)
+ }
+ case 1 => {
+ case Observe("2") =>
+ Stop(Accept("stop"))
+ }
+ }
+ val events = Observable("1", "2")
+
+ events.monitor(0, initialTimeout = Some(1.second))(timed) should observe[ActionOut[Notify]](Observe(Accept("stop")))
+ }
+
+ "and with timeouts (initial state timeout)" in {
+ val timed: Behaviour[Int, String] = {
+ case 0 => {
+ case StateTimeout =>
+ Stop(Accept("timeout"))
+ }
+ }
+ val events = Observable.never[String]
+
+ events.monitor(0, initialTimeout = Some(1.second))(timed) should observe[ActionOut[Notify]](Observe(Accept("timeout")))
+ }
+
+ "and with timeouts (overall timeout)" in {
+ val timed: Behaviour[Int, String] = {
+ case 0 => {
+ case MonitorTimeout =>
+ Stop(Accept("timeout"))
+ }
+ }
+ val events = Observable.never[String]
+
+ events.monitor(0, overallTimeout = Some(1.second))(timed) should observe[ActionOut[Notify]](Observe(Accept("timeout")))
+ }
+
+ "and with timeouts (state timeout)" in {
+ val timed: Behaviour[Int, String] = {
+ case 0 => {
+ case Observe("1") =>
+ Goto(1, 1.second)
+ }
+ case 1 => {
+ case StateTimeout =>
+ Stop(Accept("timeout"))
+ }
+ }
+ val events = Observable.cons("1", Observable.never)
+
+ events.monitor(0, initialTimeout = Some(1.second))(timed) should observe[ActionOut[Notify]](Observe(Accept("timeout")))
+ }
+ }
+
+ "with notifications" - {
+ "and no timeouts" in {
+ val timed: Behaviour[Int, String] = {
+ case 0 => {
+ case Observe("1") =>
+ Goto(1, 1.second, Accept("goto-1"))
+ }
+ case 1 => {
+ case Observe("2") =>
+ Stop(Accept("stop"))
+ }
+ }
+ val events = Observable("1", "2")
+
+ events.monitor(0, initialTimeout = Some(1.second))(timed) should observe[ActionOut[Notify]](Observe(Accept("goto-1")), Observe(Accept("stop")))
+ }
+
+ "and with timeouts (initial state timeout)" in {
+ val timed: Behaviour[Int, String] = {
+ case 0 => {
+ case StateTimeout =>
+ Stop(Accept("timeout"))
+ }
+ }
+ val events = Observable.never[String]
+
+ events.monitor(0, initialTimeout = Some(1.second))(timed) should observe[ActionOut[Notify]](Observe(Accept("timeout")))
+ }
+
+ "and with timeouts (state timeout)" in {
+ val timed: Behaviour[Int, String] = {
+ case 0 => {
+ case Observe("1") =>
+ Goto(1, 1.second)
+ }
+ case 1 => {
+ case StateTimeout =>
+ Stop(Accept("timeout"))
+ }
+ }
+ val events = Observable.cons("1", Observable.never)
+
+ events.monitor(0)(timed) should observe[ActionOut[Notify]](Observe(Accept("timeout")))
+ }
+
+ "and with timeouts (overall timeout)" in {
+ val timed: Behaviour[Int, String] = {
+ case 0 => {
+ case Observe("1") =>
+ Goto(1, 1.second)
+ }
+ case 1 => {
+ case MonitorTimeout =>
+ Stop(Accept("timeout"))
+ }
+ }
+ val events = Observable.cons("1", Observable.never)
+
+ events.monitor(0, overallTimeout = Some(1.second))(timed) should observe[ActionOut[Notify]](Observe(Accept("timeout")))
+ }
+ }
+ }
+
+ "Event observable closes early" - {
+ "with no events flowing" in {
+ val early: Behaviour[Int, String] = {
+ case _ => {
+ case _ =>
+ Stop(Accept("empty"))
+ }
+ }
+ val events = Observable.empty[String]
+
+ events.monitor(0)(early) should observe[ActionOut[Notify]]()
+ }
+
+ "with at least one event that flows" in {
+ val early: Behaviour[Int, String] = {
+ case 0 => {
+ case Observe("1") =>
+ Goto(1)
+ }
+ case 1 => {
+ case _ =>
+ Stop(Accept("empty"))
+ }
+ }
+ val events = Observable("1")
+
+ events.monitor(0)(early) should observe[ActionOut[Notify]]()
+ }
+ }
+}
diff --git a/core/src/test/scala/net/cakesolutions/testkit/monitor/NotifyTest.scala b/core/src/test/scala/net/cakesolutions/testkit/monitor/NotifyTest.scala
new file mode 100644
index 0000000..03854f8
--- /dev/null
+++ b/core/src/test/scala/net/cakesolutions/testkit/monitor/NotifyTest.scala
@@ -0,0 +1,35 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.monitor
+
+import org.scalatest.prop.GeneratorDrivenPropertyChecks
+import org.scalatest.{FreeSpec, Matchers}
+
+class NotifyTest extends FreeSpec with Matchers with GeneratorDrivenPropertyChecks {
+
+ import net.cakesolutions.testkit.generators.TestGenerators._
+
+ "Accept instances may be double inverted" in {
+ forAll(acceptGen) { accept =>
+ accept.invert.invert shouldEqual accept
+ }
+ }
+
+ "Fail instances may be double inverted" in {
+ forAll(failGen) { fail =>
+ fail.invert.invert shouldEqual fail
+ }
+ }
+
+ "Notify instances may be double inverted" in {
+ forAll(notifyGen) { notify =>
+ notify.invert.invert shouldEqual notify
+ }
+ }
+
+ "Fail instance have valid toString" in {
+ forAll(failGen) { fail =>
+ fail.toString shouldEqual s"net.cakesolutions.testkit.monitor.Fail: ${fail.reasons.mkString(", ")}"
+ }
+ }
+}
diff --git a/core/src/test/scala/net/cakesolutions/utils/ValueDiscard.scala b/core/src/test/scala/net/cakesolutions/utils/ValueDiscard.scala
new file mode 100644
index 0000000..763ef1b
--- /dev/null
+++ b/core/src/test/scala/net/cakesolutions/utils/ValueDiscard.scala
@@ -0,0 +1,9 @@
+// Copyright 2016-2018 Cake Solutions Limited
+
+package net.cakesolutions.utils
+
+object ValueDiscard {
+ def apply[T](value: => T): Unit = {
+ val _ = value
+ }
+}
diff --git a/instrumentation/docker/src/main/scala/net/cakesolutions/testkit/logging/docker/DockerLogLineSource.scala b/instrumentation/docker/src/main/scala/net/cakesolutions/testkit/logging/docker/DockerLogLineSource.scala
new file mode 100644
index 0000000..94ee34e
--- /dev/null
+++ b/instrumentation/docker/src/main/scala/net/cakesolutions/testkit/logging/docker/DockerLogLineSource.scala
@@ -0,0 +1,86 @@
+// Copyright 2018 Cake Solutions Limited
+// Copyright 2017 Carl Pulley
+
+package net.cakesolutions.testkit.logging.docker
+
+import scala.concurrent.{blocking, Promise}
+import scala.sys.process.{Process, ProcessLogger}
+import scala.util.control.NonFatal
+
+import com.typesafe.scalalogging.Logger
+import monix.execution.Scheduler
+import monix.reactive.observers.Subscriber
+
+import net.cakesolutions.testkit.config.Configuration.Logging
+import net.cakesolutions.testkit.logging.LineLoggingSource
+
+/**
+ * TODO:
+ *
+ * @param dockerComposeFiles
+ */
+class DockerLogLineSource(
+ dockerComposeFiles: Seq[String] = Seq.empty
+) extends LineLoggingSource[String] {
+
+ private val log = Logger(Logging.name)
+
+ private val dockerLogsCmd: Seq[String] =
+ Seq("docker-compose") ++
+ dockerComposeFiles.map("-f " + _) ++
+ Seq("logs", "-f", "-t")
+
+ /**
+ * Process for polling the Docker container for logging lines.
+ *
+ * @param handler handler that will manage each received log line
+ * @return process for polling the Docker container for logging lines
+ */
+ protected def pollingProcess(handler: String => Unit): Process = {
+ Process(dockerLogsCmd).run(ProcessLogger(handler, handler))
+ }
+
+ override protected def subscriberPolling(
+ subscriber: Subscriber[String],
+ cancelP: Promise[Unit]
+ )(implicit
+ scheduler: Scheduler
+ ): Unit = {
+ def handleLogEvent(event: String): Unit = {
+ if (! cancelP.isCompleted) {
+ try {
+ subscriber.onNext(event)
+ } catch {
+ case NonFatal(exn) =>
+ log.error("Unexpected exception sending data to a subscriber", exn)
+ }
+ }
+ }
+
+ blocking {
+ val process = pollingProcess(handleLogEvent)
+
+ cancelP.future.onComplete(_ => process.destroy())(scheduler)
+
+ // 143 = 128 + SIGTERM
+ val exit = process.exitValue()
+ if (exit != 0 && exit != 143) {
+ val cause = ProcessTerminated(exit)
+ cancelP.failure(cause)
+ subscriber.onError(cause)
+ throw ProcessTerminated(exit)
+ }
+ if (! cancelP.isCompleted) {
+ cancelP.success(())
+ subscriber.onComplete()
+ }
+ }
+ }
+}
+
+/**
+ * Error signal indicating that a process has unexpectedly terminated.
+ *
+ * @param exitCode exit code the process terminated with
+ */
+final case class ProcessTerminated(exitCode: Int) extends Exception(s"ProcessTerminated($exitCode)")
diff --git a/instrumentation/docker/src/main/scala/net/cakesolutions/testkit/logging/docker/DockerLogSource.scala b/instrumentation/docker/src/main/scala/net/cakesolutions/testkit/logging/docker/DockerLogSource.scala
new file mode 100644
index 0000000..fcdf323
--- /dev/null
+++ b/instrumentation/docker/src/main/scala/net/cakesolutions/testkit/logging/docker/DockerLogSource.scala
@@ -0,0 +1,42 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.logging.docker
+
+import io.circe.Json
+import monix.execution.Scheduler
+import monix.reactive.Observable
+
+import net.cakesolutions.testkit.logging.LogEvent
+import net.cakesolutions.testkit.logging.docker.formats.LogEventFormat
+
+/**
+ * TODO:
+ *
+ * @param dockerComposeFiles
+ */
+final class DockerLogSource(dockerComposeFiles: Seq[String]) {
+
+ private val dockerLogLineSource = new DockerLogLineSource(dockerComposeFiles)
+
+ /**
+ * For project Docker containers, wrap their logging as an observable.
+ *
+ * @param scheduler (implicit) scheduler that the subscriber uses for running
+ * polling events on
+ * @return observable of observed logging events
+ */
+ def source()(implicit scheduler: Scheduler): Observable[LogEvent[Json]] = {
+ dockerLogLineSource
+ .source()
+ .flatMap { line =>
+ LogEventFormat.parse(line) match {
+ case Some(Right(logEntry)) =>
+ Observable.pure(logEntry)
+ case Some(Left(exn)) =>
+ Observable.raiseError(exn)
+ case None =>
+ Observable.empty
+ }
+ }
+ }
+}
diff --git a/instrumentation/docker/src/main/scala/net/cakesolutions/testkit/logging/docker/formats/LogEventFormat.scala b/instrumentation/docker/src/main/scala/net/cakesolutions/testkit/logging/docker/formats/LogEventFormat.scala
new file mode 100644
index 0000000..2f6ae2b
--- /dev/null
+++ b/instrumentation/docker/src/main/scala/net/cakesolutions/testkit/logging/docker/formats/LogEventFormat.scala
@@ -0,0 +1,60 @@
+// Copyright 2018 Cake Solutions Limited
+// Copyright 2017 Carl Pulley
+
+package net.cakesolutions.testkit.logging.docker.formats
+
+import java.time.ZonedDateTime
+import java.time.format.DateTimeFormatter
+
+import scala.util.control.NonFatal
+
+import cats.syntax.either._
+import io.circe._
+import net.cakesolutions.testkit.logging.LogEvent
+
+/**
+ * Utility methods for transforming between log lines and JSON log events.
+ */
+object LogEventFormat {
+ private val formatter = DateTimeFormatter.ISO_OFFSET_DATE_TIME
+ private val logLineRE = """^([^\s]+)\s+\|\s+([^\s]+)\s+(.*)\z""".r
+
+ case object MatchingFailure extends Exception("MatchingFailure")
+
+ /**
+ * Parse a log line into a JSON logging event.
+ *
+ * @param rawLine log line
+ * @return None if the log line is empty, otherwise the result of parsing the log line
+ */
+ def parse(rawLine: String): Option[Either[ParsingFailure, LogEvent[Json]]] = {
+ val line = rawLine.trim
+
+ if (line.nonEmpty) {
+ Some(
+ try {
+ logLineRE.findFirstMatchIn(line) match {
+ case Some(logLineMatch) =>
+ val id = logLineMatch.group(1).trim
+ val time = logLineMatch.group(2).trim
+ val message = logLineMatch.group(3).trim
+ (for {
+ json <- parser.parse(message)
+ } yield LogEvent[Json](ZonedDateTime.parse(time, formatter), id, json)
+ ).recover {
+ case NonFatal(_) =>
+ LogEvent[Json](ZonedDateTime.parse(time, formatter), id, Json.fromString(message))
+ }
+ case None =>
+ Left(ParsingFailure("Match failure", MatchingFailure))
+ }
+ } catch {
+ case NonFatal(exn) =>
+ Left(ParsingFailure("Unexpected exception", exn))
+ }
+ )
+ } else {
+ None
+ }
+ }
+}
diff --git a/instrumentation/docker/src/test/resources/sample-docker-logging.txt b/instrumentation/docker/src/test/resources/sample-docker-logging.txt
new file mode 100644
index 0000000..63e1b77
--- /dev/null
+++ b/instrumentation/docker/src/test/resources/sample-docker-logging.txt
@@ -0,0 +1,2165 @@
+frontend_1 | 2018-01-31T11:56:29.349282974Z Jan 31, 2018 11:56:29 +0000 [1 1] com.newrelic INFO: New Relic Agent: Loading configuration file "/opt/docker/newrelic/./newrelic.yml"
+frontend_1 | 2018-01-31T11:56:29.823688037Z Jan 31, 2018 11:56:29 +0000 [1 1] com.newrelic WARN: agent_enabled is false in the config. Not starting New Relic Agent.
+frontend_1 | 2018-01-31T11:56:41.218302650Z {"@timestamp":"2018-01-31T11:56:41.148+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.event.slf4j.Slf4jLogger","level":"INFO","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger.aroundReceive(Slf4jLogger.scala:54)\n","message":"Slf4jLogger started"}
+frontend_1 | 2018-01-31T11:56:47.062544767Z {"@timestamp":"2018-01-31T11:56:47.055+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withContext(StructuredLogging.scala:54)\n","message":{"instanceId":"13XjLVTmR81LWk0ecfH4EiRK","operations":[],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"ENTRY"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.072800013Z {"@timestamp":"2018-01-31T11:56:47.072+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.088318226Z {"@timestamp":"2018-01-31T11:56:47.084+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"APPLICATION_SECRET":"change_me"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.089281759Z {"@timestamp":"2018-01-31T11:56:47.088+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"APP_HOST":"0.0.0.0"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.092349321Z {"@timestamp":"2018-01-31T11:56:47.091+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"APP_PORT":"9000"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.096016263Z {"@timestamp":"2018-01-31T11:56:47.095+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"AWS_ACCESS_KEY_ID":"only-needed-for-localstack"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.099677512Z {"@timestamp":"2018-01-31T11:56:47.099+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"AWS_REGION":"us-east-1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.104010736Z {"@timestamp":"2018-01-31T11:56:47.100+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"AWS_SECRET_ACCESS_KEY":"only-needed-for-localstack"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.112101638Z {"@timestamp":"2018-01-31T11:56:47.104+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"CA_CERTIFICATES_JAVA_VERSION":"20170531+nmu1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.114382154Z {"@timestamp":"2018-01-31T11:56:47.113+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"HOME":"/usr/sbin"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.120174728Z {"@timestamp":"2018-01-31T11:56:47.119+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"HOSTNAME":"4802afca9536"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.121449239Z {"@timestamp":"2018-01-31T11:56:47.120+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"JAVA_DEBIAN_VERSION":"8u151-b12-1~deb9u1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.122373211Z {"@timestamp":"2018-01-31T11:56:47.121+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"JAVA_HOME":"/docker-java-home"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.123144910Z {"@timestamp":"2018-01-31T11:56:47.122+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"JAVA_VERSION":"8u151"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.129767825Z {"@timestamp":"2018-01-31T11:56:47.123+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"LANG":"C.UTF-8"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.130565777Z {"@timestamp":"2018-01-31T11:56:47.130+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"NEW_RELIC_ENVIRONMENT":"local"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.131358835Z {"@timestamp":"2018-01-31T11:56:47.130+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"PATH":"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.132023160Z {"@timestamp":"2018-01-31T11:56:47.131+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"PWD":"/opt/docker"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.132712766Z {"@timestamp":"2018-01-31T11:56:47.132+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"S3_LOCAL_OVERRIDE":"true"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.133592180Z {"@timestamp":"2018-01-31T11:56:47.133+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"SQS_ENDPOINT":"http://queue:4576/"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.134588033Z {"@timestamp":"2018-01-31T11:56:47.133+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"SQS_TOPIC":"messages"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.135458647Z {"@timestamp":"2018-01-31T11:56:47.134+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"TEST_ACTOR_CREATOR_SERIALISATION":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.141020107Z {"@timestamp":"2018-01-31T11:56:47.140+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"TEST_ACTOR_MESSAGE_SERIALISATION":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.141808623Z {"@timestamp":"2018-01-31T11:56:47.141+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"VARIANT_WORKER_HOST":"variant"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.142557840Z {"@timestamp":"2018-01-31T11:56:47.142+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logEnvironmentData$2.apply(StartUpLogging.scala:40)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"VARIANT_WORKER_PORT":"9002"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.149211308Z {"@timestamp":"2018-01-31T11:56:47.146+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$logStartUp$2.apply(StartUpLogging.scala:31)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.lang.memory.heap":{"committed":"270.0MB","initial":"98.6MB","maximum":"1.4GB","used":"105.6MB"},"java.lang.memory.non-heap":{"committed":"61.3MB","initial":"2.6MB","maximum":"undefined","used":"60.2MB"},"available-processors":4},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.164398303Z {"@timestamp":"2018-01-31T11:56:47.163+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"awt.toolkit":"sun.awt.X11.XToolkit"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.165104402Z {"@timestamp":"2018-01-31T11:56:47.164+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"com.newrelic.agent.deps.org.apache.commons.logging.LogFactory":"com.newrelic.agent.logging.ApacheCommonsAdaptingLogFactory"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.165783881Z {"@timestamp":"2018-01-31T11:56:47.165+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"file.encoding":"UTF-8"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.166663343Z {"@timestamp":"2018-01-31T11:56:47.166+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"file.encoding.pkg":"sun.io"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.168300447Z {"@timestamp":"2018-01-31T11:56:47.167+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"file.separator":"/"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.178034103Z {"@timestamp":"2018-01-31T11:56:47.169+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.awt.graphicsenv":"sun.awt.X11GraphicsEnvironment"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.178774091Z {"@timestamp":"2018-01-31T11:56:47.178+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.awt.printerjob":"sun.print.PSPrinterJob"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.180623922Z {"@timestamp":"2018-01-31T11:56:47.179+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.class.path":"/opt/docker/lib/../conf/:/opt/docker/lib/com.bamtech.cde.frontend-CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT-sans-externalized.jar:/opt/docker/lib/com.bamtech.cde.common-CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT.jar:/opt/docker/lib/org.apache.commons.commons-lang3-3.6.jar:/opt/docker/lib/org.typelevel.cats-macros_2.11-1.0.0-MF.jar:/opt/docker/lib/com.typesafe.play.play-ws_2.11-2.6.7.jar:/opt/docker/lib/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.6.7.jar:/opt/docker/lib/org.scala-lang.modules.scala-java8-compat_2.11-0.8.0.jar:/opt/docker/lib/com.google.inject.extensions.guice-assistedinject-4.1.0.jar:/opt/docker/lib/com.typesafe.play.play-streams_2.11-2.6.7.jar:/opt/docker/lib/com.typesafe.play.play-ahc-ws_2.11-2.6.7.jar:/opt/docker/lib/eu.timepit.refined_2.11-0.8.4.jar:/opt/docker/lib/com.typesafe.config-1.3.2.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-bmp-3.3.2.jar:/opt/docker/lib/com.fasterxml.jackson.core.jackson-databind-2.8.10.jar:/opt/docker/lib/com.amazonaws.jmespath-java-1.11.234.jar:/opt/docker/lib/com.typesafe.play.play-json_2.11-2.6.7.jar:/opt/docker/lib/org.reactivestreams.reactive-streams-1.0.1.jar:/opt/docker/lib/com.typesafe.play.build-link-2.6.7.jar:/opt/docker/lib/com.typesafe.play.play-server_2.11-2.6.7.jar:/opt/docker/lib/org.scala-lang.scala-reflect-2.11.12.jar:/opt/docker/lib/com.typesafe.play.play-ws-standalone-json_2.11-1.1.3.jar:/opt/docker/lib/com.typesafe.play.twirl-api_2.11-1.3.12.jar:/opt/docker/lib/com.typesafe.play.cachecontrol_2.11-1.1.2.jar:/opt/docker/lib/org.scala-lang.modules.scala-xml_2.11-1.0.6.jar:/opt/docker/lib/io.jsonwebtoken.jjwt-0.7.0.jar:/opt/docker/lib/commons-logging.commons-logging-1.2.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-tiff-3.3.2.jar:/opt/docker/lib/org.typelevel.cats-core_2.11-1.0.0-MF.jar:/opt/docker/lib/org.typelevel.macro-compat_2.11-1.1.1.jar:/opt/docker/lib/com.typesafe.play.shaded-oauth-1.1.3.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-thumbsdb-3.3.2.jar:/opt/docker/lib/com.google.inject.guice-4.1.0.jar:/opt/docker/lib/com.twelvemonkeys.common.common-io-3.3.2.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-psd-3.3.2.jar:/opt/docker/lib/com.google.j2objc.j2objc-annotations-1.1.jar:/opt/docker/lib/org.slf4j.jul-to-slf4j-1.7.25.jar:/opt/docker/lib/commons-codec.commons-codec-1.10.jar:/opt/docker/lib/org.apache.httpcomponents.httpcore-4.4.6.jar:/opt/docker/lib/ar.com.hjg.pngj-2.1.0.jar:/opt/docker/lib/com.sksamuel.scrimage.scrimage-core_2.11-3.0.0-alpha4.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-metadata-3.3.2.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-pcx-3.3.2.jar:/opt/docker/lib/org.webjars.swagger-ui-3.4.4.jar:/opt/docker/lib/com.fasterxml.jackson.datatype.jackson-datatype-jdk8-2.8.10.jar:/opt/docker/lib/com.typesafe.akka.akka-slf4j_2.11-2.5.6.jar:/opt/docker/lib/com.amazonaws.aws-java-sdk-s3-1.11.234.jar:/opt/docker/lib/ch.qos.logback.logback-classic-1.2.3.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-pnm-3.3.2.jar:/opt/docker/lib/org.jctools.jctools-core-2.0.1.jar:/opt/docker/lib/com.google.errorprone.error_prone_annotations-2.0.18.jar:/opt/docker/lib/com.google.guava.guava-23.0.jar:/opt/docker/lib/com.typesafe.play.play-guice_2.11-2.6.7.jar:/opt/docker/lib/org.typelevel.machinist_2.11-0.6.2.jar:/opt/docker/lib/javax.cache.cache-api-1.0.0.jar:/opt/docker/lib/aopalliance.aopalliance-1.0.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-core-3.3.2.jar:/opt/docker/lib/com.sksamuel.scrimage.scrimage-io-extra_2.11-3.0.0-alpha4.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-icns-3.3.2.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-jpeg-3.3.2.jar:/opt/docker/lib/com.adobe.xmp.xmpcore-5.1.3.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-sgi-3.3.2.jar:/opt/docker/lib/com.typesafe.ssl-config-core_2.11-0.2.2.jar:/opt/docker/lib/com.typesafe.play.play-exceptions-2.6.7.jar:/opt/docker/lib/org.scala-lang.scala-compiler-2.11.12.jar:/opt/docker/lib/org.scala-lang.modules.scala-parser-combinators_2.11-1.0.6.jar:/opt/docker/lib/com.typesafe.akka.akka-stream_2.11-2.5.6.jar:/opt/docker/lib/com.drewnoakes.metadata-extractor-2.10.1.jar:/opt/docker/lib/com.typesafe.play.play-ws-standalone_2.11-1.1.3.jar:/opt/docker/lib/commons-io.commons-io-2.5.jar:/opt/docker/lib/com.typesafe.play.filters-helpers_2.11-2.6.7.jar:/opt/docker/lib/io.monix.monix-execution_2.11-2.3.2.jar:/opt/docker/lib/com.typesafe.play.play-logback_2.11-2.6.7.jar:/opt/docker/lib/net.logstash.logback.logstash-logback-encoder-4.11.jar:/opt/docker/lib/com.typesafe.akka.akka-http-spray-json_2.11-10.0.10.jar:/opt/docker/lib/com.fasterxml.jackson.core.jackson-core-2.8.10.jar:/opt/docker/lib/joda-time.joda-time-2.9.9.jar:/opt/docker/lib/org.typelevel.cats-kernel_2.11-1.0.0-MF.jar:/opt/docker/lib/com.typesafe.play.play-ahc-ws-standalone_2.11-1.1.3.jar:/opt/docker/lib/org.codehaus.mojo.animal-sniffer-annotations-1.14.jar:/opt/docker/lib/com.typesafe.play.shaded-asynchttpclient-1.1.3.jar:/opt/docker/lib/org.slf4j.jcl-over-slf4j-1.7.25.jar:/opt/docker/lib/com.typesafe.play.play-netty-utils-2.6.7.jar:/opt/docker/lib/com.twelvemonkeys.common.common-image-3.3.2.jar:/opt/docker/lib/software.amazon.ion.ion-java-1.0.2.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-iff-3.3.2.jar:/opt/docker/lib/com.amazonaws.aws-java-sdk-kms-1.11.234.jar:/opt/docker/lib/com.google.code.findbugs.jsr305-3.0.2.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-pict-3.3.2.jar:/opt/docker/lib/javax.transaction.jta-1.1.jar:/opt/docker/lib/com.typesafe.akka.akka-http-core_2.11-10.0.10.jar:/opt/docker/lib/javax.inject.javax.inject-1.jar:/opt/docker/lib/org.slf4j.slf4j-api-1.7.25.jar:/opt/docker/lib/io.monix.monix-types_2.11-2.3.2.jar:/opt/docker/lib/ch.qos.logback.logback-core-1.2.3.jar:/opt/docker/lib/com.twelvemonkeys.common.common-lang-3.3.2.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-pdf-3.3.2.jar:/opt/docker/lib/io.spray.spray-json_2.11-1.3.3.jar:/opt/docker/lib/com.typesafe.akka.akka-actor_2.11-2.5.7.jar:/opt/docker/lib/com.typesafe.akka.akka-parsing_2.11-10.0.10.jar:/opt/docker/lib/com.typesafe.play.play-functional_2.11-2.6.7.jar:/opt/docker/lib/com.typesafe.akka.akka-http_2.11-10.0.10.jar:/opt/docker/lib/net.cakesolutions.validated-config_2.11-1.1.2.jar:/opt/docker/lib/com.amazonaws.aws-java-sdk-core-1.11.234.jar:/opt/docker/lib/com.amazonaws.aws-java-sdk-sqs-1.11.234.jar:/opt/docker/lib/com.fasterxml.jackson.core.jackson-annotations-2.8.10.jar:/opt/docker/lib/com.chuusai.shapeless_2.11-2.3.2.jar:/opt/docker/lib/org.apache.httpcomponents.httpclient-4.5.3.jar:/opt/docker/lib/io.monix.monix-reactive_2.11-2.3.2.jar:/opt/docker/lib/org.joda.joda-convert-1.7.jar:/opt/docker/lib/com.typesafe.play.play-ws-standalone-xml_2.11-1.1.3.jar:/opt/docker/lib/com.iheart.ficus_2.11-1.4.1.jar:/opt/docker/lib/com.newrelic.agent.java.newrelic-api-3.45.0.jar:/opt/docker/lib/com.fasterxml.jackson.datatype.jackson-datatype-jsr310-2.8.10.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-tga-3.3.2.jar:/opt/docker/lib/org.scala-lang.scala-library-2.11.12.jar:/opt/docker/lib/com.typesafe.play.play-akka-http-server_2.11-2.6.7.jar:/opt/docker/lib/com.typesafe.play.play_2.11-2.6.7.jar:/opt/docker/lib/io.monix.monix-eval_2.11-2.3.2.jar:/opt/docker/lib/com.bamtech.cde.frontend-CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT-assets.jar:/opt/docker/bin/../newrelic/newrelic.jar"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.182641758Z {"@timestamp":"2018-01-31T11:56:47.182+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.class.version":"52.0"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.183444102Z {"@timestamp":"2018-01-31T11:56:47.182+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.endorsed.dirs":"/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/endorsed"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.185678959Z {"@timestamp":"2018-01-31T11:56:47.185+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.ext.dirs":"/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext:/usr/java/packages/lib/ext"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.188514456Z {"@timestamp":"2018-01-31T11:56:47.186+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.home":"/usr/lib/jvm/java-8-openjdk-amd64/jre"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.190901235Z {"@timestamp":"2018-01-31T11:56:47.190+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.io.tmpdir":"/tmp"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.191564241Z {"@timestamp":"2018-01-31T11:56:47.191+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.library.path":"/usr/java/packages/lib/amd64:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.194958260Z {"@timestamp":"2018-01-31T11:56:47.194+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.runtime.name":"OpenJDK Runtime Environment"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.195864383Z {"@timestamp":"2018-01-31T11:56:47.195+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.runtime.version":"1.8.0_151-8u151-b12-1~deb9u1-b12"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.197077203Z {"@timestamp":"2018-01-31T11:56:47.196+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.specification.name":"Java Platform API Specification"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.209220436Z {"@timestamp":"2018-01-31T11:56:47.208+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.specification.vendor":"Oracle Corporation"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.210184736Z {"@timestamp":"2018-01-31T11:56:47.209+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.specification.version":"1.8"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.210884105Z {"@timestamp":"2018-01-31T11:56:47.210+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vendor":"Oracle Corporation"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.212628024Z {"@timestamp":"2018-01-31T11:56:47.212+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vendor.url":"http://java.oracle.com/"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.214980289Z {"@timestamp":"2018-01-31T11:56:47.214+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vendor.url.bug":"http://bugreport.sun.com/bugreport/"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.216058007Z {"@timestamp":"2018-01-31T11:56:47.215+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.version":"1.8.0_151"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.217629380Z {"@timestamp":"2018-01-31T11:56:47.217+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vm.info":"mixed mode"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.218223731Z {"@timestamp":"2018-01-31T11:56:47.217+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vm.name":"OpenJDK 64-Bit Server VM"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.218754174Z {"@timestamp":"2018-01-31T11:56:47.218+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vm.specification.name":"Java Virtual Machine Specification"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.219313128Z {"@timestamp":"2018-01-31T11:56:47.218+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vm.specification.vendor":"Oracle Corporation"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.219986783Z {"@timestamp":"2018-01-31T11:56:47.219+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vm.specification.version":"1.8"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.220693213Z {"@timestamp":"2018-01-31T11:56:47.220+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vm.vendor":"Oracle Corporation"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.221318134Z {"@timestamp":"2018-01-31T11:56:47.220+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vm.version":"25.151-b12"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.222041555Z {"@timestamp":"2018-01-31T11:56:47.221+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"javax.accessibility.assistive_technologies":"org.GNOME.Accessibility.AtkWrapper"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.222693143Z {"@timestamp":"2018-01-31T11:56:47.222+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"line.separator":"\n"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.228457255Z {"@timestamp":"2018-01-31T11:56:47.227+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"newrelic.environment":"local"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.229023685Z {"@timestamp":"2018-01-31T11:56:47.228+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"os.arch":"amd64"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.229635325Z {"@timestamp":"2018-01-31T11:56:47.229+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"os.name":"Linux"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.230222682Z {"@timestamp":"2018-01-31T11:56:47.229+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"os.version":"4.9.60-linuxkit-aufs"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.230879288Z {"@timestamp":"2018-01-31T11:56:47.230+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"path.separator":":"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.231581786Z {"@timestamp":"2018-01-31T11:56:47.231+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.arch.data.model":"64"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.232093866Z {"@timestamp":"2018-01-31T11:56:47.231+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.boot.class.path":"/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/resources.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/rt.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jsse.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jce.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/charsets.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jfr.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/classes"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.232766780Z {"@timestamp":"2018-01-31T11:56:47.232+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.boot.library.path":"/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.233295257Z {"@timestamp":"2018-01-31T11:56:47.232+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.cpu.endian":"little"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.235375546Z {"@timestamp":"2018-01-31T11:56:47.234+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.cpu.isalist":""},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.236084411Z {"@timestamp":"2018-01-31T11:56:47.235+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.font.fontmanager":"sun.awt.X11FontManager"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.236797656Z {"@timestamp":"2018-01-31T11:56:47.236+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.io.unicode.encoding":"UnicodeLittle"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.248879112Z {"@timestamp":"2018-01-31T11:56:47.248+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.java.command":"play.core.server.ProdServerStart"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.250326629Z {"@timestamp":"2018-01-31T11:56:47.249+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.java.launcher":"SUN_STANDARD"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.252557652Z {"@timestamp":"2018-01-31T11:56:47.251+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.jnu.encoding":"UTF-8"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.253139402Z {"@timestamp":"2018-01-31T11:56:47.252+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.management.compiler":"HotSpot 64-Bit Tiered Compilers"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.253673933Z {"@timestamp":"2018-01-31T11:56:47.253+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.nio.ch.bugLevel":""},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.254803531Z {"@timestamp":"2018-01-31T11:56:47.253+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.os.patch.level":"unknown"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.257299737Z {"@timestamp":"2018-01-31T11:56:47.255+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"user.dir":"/opt/docker"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.258549216Z {"@timestamp":"2018-01-31T11:56:47.258+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"user.home":"/usr/sbin"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.260474435Z {"@timestamp":"2018-01-31T11:56:47.259+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"user.language":"en"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.260941477Z {"@timestamp":"2018-01-31T11:56:47.260+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"user.name":"daemon"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.264284245Z {"@timestamp":"2018-01-31T11:56:47.263+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logPropertyData$2.apply(StartUpLogging.scala:75)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"user.timezone":"Etc/UTC"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.344094154Z {"@timestamp":"2018-01-31T11:56:47.342+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.allow-java-serialization":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.345125782Z {"@timestamp":"2018-01-31T11:56:47.344+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.creation-timeout":"20s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.345861827Z {"@timestamp":"2018-01-31T11:56:47.345+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.debug.autoreceive":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.346910847Z {"@timestamp":"2018-01-31T11:56:47.346+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.debug.event-stream":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.348899159Z {"@timestamp":"2018-01-31T11:56:47.348+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.debug.fsm":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.350044255Z {"@timestamp":"2018-01-31T11:56:47.349+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.debug.lifecycle":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.351961266Z {"@timestamp":"2018-01-31T11:56:47.350+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.debug.receive":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.352685684Z {"@timestamp":"2018-01-31T11:56:47.352+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.debug.router-misconfiguration":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.354695713Z {"@timestamp":"2018-01-31T11:56:47.354+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.debug.unhandled":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.355660271Z {"@timestamp":"2018-01-31T11:56:47.354+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-blocking-io-dispatcher.executor":"thread-pool-executor"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.356136657Z {"@timestamp":"2018-01-31T11:56:47.355+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-blocking-io-dispatcher.thread-pool-executor.fixed-pool-size":"16"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.356780651Z {"@timestamp":"2018-01-31T11:56:47.356+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-blocking-io-dispatcher.throughput":"1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.357417383Z {"@timestamp":"2018-01-31T11:56:47.356+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-blocking-io-dispatcher.type":"Dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.358038101Z {"@timestamp":"2018-01-31T11:56:47.357+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.affinity-pool-executor.fair-work-distribution.threshold":"128"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.361443284Z {"@timestamp":"2018-01-31T11:56:47.358+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.affinity-pool-executor.idle-cpu-level":"5"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.361968424Z {"@timestamp":"2018-01-31T11:56:47.361+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.affinity-pool-executor.parallelism-factor":"0.8"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.363134896Z {"@timestamp":"2018-01-31T11:56:47.362+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.affinity-pool-executor.parallelism-max":"64"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.365160717Z {"@timestamp":"2018-01-31T11:56:47.364+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.affinity-pool-executor.parallelism-min":"4"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.365835920Z {"@timestamp":"2018-01-31T11:56:47.365+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.affinity-pool-executor.queue-selector":"akka.dispatch.affinity.FairDistributionHashCache"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.366357847Z {"@timestamp":"2018-01-31T11:56:47.365+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.affinity-pool-executor.rejection-handler":"akka.dispatch.affinity.ThrowOnOverflowRejectionHandler"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.367164646Z {"@timestamp":"2018-01-31T11:56:47.366+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.affinity-pool-executor.task-queue-size":"512"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.367606132Z {"@timestamp":"2018-01-31T11:56:47.367+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.attempt-teamwork":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.370153823Z {"@timestamp":"2018-01-31T11:56:47.369+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.default-executor.fallback":"fork-join-executor"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.370917906Z {"@timestamp":"2018-01-31T11:56:47.370+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.executor":"default-executor"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.371997513Z {"@timestamp":"2018-01-31T11:56:47.371+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.fork-join-executor.parallelism-factor":"1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.372492240Z {"@timestamp":"2018-01-31T11:56:47.372+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.fork-join-executor.parallelism-max":"24"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.373631780Z {"@timestamp":"2018-01-31T11:56:47.373+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.fork-join-executor.parallelism-min":"8"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.375660321Z {"@timestamp":"2018-01-31T11:56:47.375+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.fork-join-executor.task-peeking-mode":"LIFO"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.377888916Z {"@timestamp":"2018-01-31T11:56:47.375+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.mailbox-requirement":""},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.378708662Z {"@timestamp":"2018-01-31T11:56:47.378+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.shutdown-timeout":"1s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.379432514Z {"@timestamp":"2018-01-31T11:56:47.379+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.thread-pool-executor.allow-core-timeout":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.380062595Z {"@timestamp":"2018-01-31T11:56:47.379+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.thread-pool-executor.core-pool-size-factor":"3"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.380973952Z {"@timestamp":"2018-01-31T11:56:47.380+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.thread-pool-executor.core-pool-size-max":"64"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.382853898Z {"@timestamp":"2018-01-31T11:56:47.381+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.thread-pool-executor.core-pool-size-min":"8"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.383506223Z {"@timestamp":"2018-01-31T11:56:47.383+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.thread-pool-executor.fixed-pool-size":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.384066208Z {"@timestamp":"2018-01-31T11:56:47.383+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.thread-pool-executor.keep-alive-time":"60s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.385065064Z {"@timestamp":"2018-01-31T11:56:47.384+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.thread-pool-executor.max-pool-size-factor":"3"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.385635039Z {"@timestamp":"2018-01-31T11:56:47.385+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.thread-pool-executor.max-pool-size-max":"64"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.387512889Z {"@timestamp":"2018-01-31T11:56:47.385+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.thread-pool-executor.max-pool-size-min":"8"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.388134763Z {"@timestamp":"2018-01-31T11:56:47.387+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.thread-pool-executor.task-queue-size":"-1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.388669177Z {"@timestamp":"2018-01-31T11:56:47.388+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.thread-pool-executor.task-queue-type":"linked"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.389391428Z {"@timestamp":"2018-01-31T11:56:47.388+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.throughput":"5"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.390792054Z {"@timestamp":"2018-01-31T11:56:47.389+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.throughput-deadline-time":"0ms"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.391452231Z {"@timestamp":"2018-01-31T11:56:47.390+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-dispatcher.type":"Dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.392788198Z {"@timestamp":"2018-01-31T11:56:47.392+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-mailbox.mailbox-capacity":"1000"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.397467033Z {"@timestamp":"2018-01-31T11:56:47.395+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-mailbox.mailbox-push-timeout-time":"5ms"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.398798193Z {"@timestamp":"2018-01-31T11:56:47.398+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-mailbox.mailbox-type":"akka.dispatch.UnboundedMailbox"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.400621332Z {"@timestamp":"2018-01-31T11:56:47.399+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.default-mailbox.stash-capacity":"1000"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.401329576Z {"@timestamp":"2018-01-31T11:56:47.400+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.\"/IO-DNS/inet-address\".mailbox":"unbounded"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.403102959Z {"@timestamp":"2018-01-31T11:56:47.401+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.\"/IO-DNS/inet-address\".nr-of-instances":"4"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.403601231Z {"@timestamp":"2018-01-31T11:56:47.403+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.\"/IO-DNS/inet-address\".router":"consistent-hashing-pool"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.404257437Z {"@timestamp":"2018-01-31T11:56:47.403+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.\"/IO-DNS/inet-address/*\".dispatcher":"akka.actor.default-blocking-io-dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.404825242Z {"@timestamp":"2018-01-31T11:56:47.404+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.dispatcher":""},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.405248602Z {"@timestamp":"2018-01-31T11:56:47.404+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.mailbox":""},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.406381483Z {"@timestamp":"2018-01-31T11:56:47.406+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.nr-of-instances":"1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.406842705Z {"@timestamp":"2018-01-31T11:56:47.406+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.optimal-size-exploring-resizer.action-interval":"5s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.407193287Z {"@timestamp":"2018-01-31T11:56:47.406+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.optimal-size-exploring-resizer.chance-of-exploration":"0.4"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.407701657Z {"@timestamp":"2018-01-31T11:56:47.407+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.optimal-size-exploring-resizer.chance-of-ramping-down-when-full":"0.2"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.408048975Z {"@timestamp":"2018-01-31T11:56:47.407+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.optimal-size-exploring-resizer.downsize-after-underutilized-for":"72h"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.412350729Z {"@timestamp":"2018-01-31T11:56:47.408+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.optimal-size-exploring-resizer.downsize-ratio":"0.8"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.413175642Z {"@timestamp":"2018-01-31T11:56:47.412+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.optimal-size-exploring-resizer.enabled":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.413870156Z {"@timestamp":"2018-01-31T11:56:47.413+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.optimal-size-exploring-resizer.explore-step-size":"0.1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.414340105Z {"@timestamp":"2018-01-31T11:56:47.413+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.optimal-size-exploring-resizer.lower-bound":"1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.415246864Z {"@timestamp":"2018-01-31T11:56:47.414+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.optimal-size-exploring-resizer.optimization-range":"16"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.415826947Z {"@timestamp":"2018-01-31T11:56:47.415+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.optimal-size-exploring-resizer.upper-bound":"10"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.416414013Z {"@timestamp":"2018-01-31T11:56:47.416+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.optimal-size-exploring-resizer.weight-of-latest-metric":"0.5"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.416964602Z {"@timestamp":"2018-01-31T11:56:47.416+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.resizer.backoff-rate":"0.1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.417419339Z {"@timestamp":"2018-01-31T11:56:47.417+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.resizer.backoff-threshold":"0.3"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.418069300Z {"@timestamp":"2018-01-31T11:56:47.417+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.resizer.enabled":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.418414647Z {"@timestamp":"2018-01-31T11:56:47.418+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.resizer.lower-bound":"1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.418947477Z {"@timestamp":"2018-01-31T11:56:47.418+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.resizer.messages-per-resize":"10"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.420074208Z {"@timestamp":"2018-01-31T11:56:47.419+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.resizer.pressure-threshold":"1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.420631659Z {"@timestamp":"2018-01-31T11:56:47.420+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.resizer.rampup-rate":"0.2"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.421374286Z {"@timestamp":"2018-01-31T11:56:47.420+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.resizer.upper-bound":"10"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.421904420Z {"@timestamp":"2018-01-31T11:56:47.421+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.routees.paths":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.422406026Z {"@timestamp":"2018-01-31T11:56:47.421+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.router":"from-code"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.423069767Z {"@timestamp":"2018-01-31T11:56:47.422+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.tail-chopping-router.interval":"10 milliseconds"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.423575469Z {"@timestamp":"2018-01-31T11:56:47.423+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.virtual-nodes-factor":"10"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.424081910Z {"@timestamp":"2018-01-31T11:56:47.423+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.deployment.default.within":"5 seconds"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.424576965Z {"@timestamp":"2018-01-31T11:56:47.424+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.dsl.default-timeout":"5s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.425309834Z {"@timestamp":"2018-01-31T11:56:47.424+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.dsl.inbox-size":"1000"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.425661502Z {"@timestamp":"2018-01-31T11:56:47.425+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.enable-additional-serialization-bindings":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.426201432Z {"@timestamp":"2018-01-31T11:56:47.425+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.guardian-supervisor-strategy":"akka.actor.DefaultSupervisorStrategy"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.426616702Z {"@timestamp":"2018-01-31T11:56:47.426+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.bounded-control-aware-queue-based.mailbox-type":"akka.dispatch.BoundedControlAwareMailbox"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.427070305Z {"@timestamp":"2018-01-31T11:56:47.426+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.bounded-deque-based.mailbox-type":"akka.dispatch.BoundedDequeBasedMailbox"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.427589996Z {"@timestamp":"2018-01-31T11:56:47.427+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.bounded-queue-based.mailbox-type":"akka.dispatch.BoundedMailbox"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.437653853Z {"@timestamp":"2018-01-31T11:56:47.427+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.logger-queue.mailbox-type":"akka.event.LoggerMailboxType"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.439415400Z {"@timestamp":"2018-01-31T11:56:47.438+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.requirements.\"akka.dispatch.BoundedControlAwareMessageQueueSemantics\"":"akka.actor.mailbox.bounded-control-aware-queue-based"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.440198250Z {"@timestamp":"2018-01-31T11:56:47.439+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.requirements.\"akka.dispatch.BoundedDequeBasedMessageQueueSemantics\"":"akka.actor.mailbox.bounded-deque-based"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.440962656Z {"@timestamp":"2018-01-31T11:56:47.440+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.requirements.\"akka.dispatch.BoundedMessageQueueSemantics\"":"akka.actor.mailbox.bounded-queue-based"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.441778236Z {"@timestamp":"2018-01-31T11:56:47.441+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.requirements.\"akka.dispatch.ControlAwareMessageQueueSemantics\"":"akka.actor.mailbox.unbounded-control-aware-queue-based"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.442357850Z {"@timestamp":"2018-01-31T11:56:47.442+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.requirements.\"akka.dispatch.DequeBasedMessageQueueSemantics\"":"akka.actor.mailbox.unbounded-deque-based"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.443063781Z {"@timestamp":"2018-01-31T11:56:47.442+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.requirements.\"akka.dispatch.MultipleConsumerSemantics\"":"akka.actor.mailbox.unbounded-queue-based"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.443935655Z {"@timestamp":"2018-01-31T11:56:47.443+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.requirements.\"akka.dispatch.UnboundedControlAwareMessageQueueSemantics\"":"akka.actor.mailbox.unbounded-control-aware-queue-based"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.444774504Z {"@timestamp":"2018-01-31T11:56:47.444+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.requirements.\"akka.dispatch.UnboundedDequeBasedMessageQueueSemantics\"":"akka.actor.mailbox.unbounded-deque-based"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.445352581Z {"@timestamp":"2018-01-31T11:56:47.444+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.requirements.\"akka.dispatch.UnboundedMessageQueueSemantics\"":"akka.actor.mailbox.unbounded-queue-based"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.445908423Z {"@timestamp":"2018-01-31T11:56:47.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.requirements.\"akka.event.LoggerMessageQueueSemantics\"":"akka.actor.mailbox.logger-queue"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.446334485Z {"@timestamp":"2018-01-31T11:56:47.446+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.unbounded-control-aware-queue-based.mailbox-type":"akka.dispatch.UnboundedControlAwareMailbox"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.446753332Z {"@timestamp":"2018-01-31T11:56:47.446+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.unbounded-deque-based.mailbox-type":"akka.dispatch.UnboundedDequeBasedMailbox"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.447222428Z {"@timestamp":"2018-01-31T11:56:47.446+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.mailbox.unbounded-queue-based.mailbox-type":"akka.dispatch.UnboundedMailbox"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.448580088Z {"@timestamp":"2018-01-31T11:56:47.448+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.provider":"local"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.449321814Z {"@timestamp":"2018-01-31T11:56:47.448+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.router.type-mapping.balancing-pool":"akka.routing.BalancingPool"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.451027512Z {"@timestamp":"2018-01-31T11:56:47.449+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.router.type-mapping.broadcast-group":"akka.routing.BroadcastGroup"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.451843601Z {"@timestamp":"2018-01-31T11:56:47.451+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.router.type-mapping.broadcast-pool":"akka.routing.BroadcastPool"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.452395133Z {"@timestamp":"2018-01-31T11:56:47.452+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.router.type-mapping.consistent-hashing-group":"akka.routing.ConsistentHashingGroup"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.452838658Z {"@timestamp":"2018-01-31T11:56:47.452+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.router.type-mapping.consistent-hashing-pool":"akka.routing.ConsistentHashingPool"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.453338898Z {"@timestamp":"2018-01-31T11:56:47.453+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.router.type-mapping.from-code":"akka.routing.NoRouter"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.453946389Z {"@timestamp":"2018-01-31T11:56:47.453+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.router.type-mapping.random-group":"akka.routing.RandomGroup"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.454820835Z {"@timestamp":"2018-01-31T11:56:47.454+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.router.type-mapping.random-pool":"akka.routing.RandomPool"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.455685903Z {"@timestamp":"2018-01-31T11:56:47.455+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.router.type-mapping.round-robin-group":"akka.routing.RoundRobinGroup"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.456658604Z {"@timestamp":"2018-01-31T11:56:47.456+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.router.type-mapping.round-robin-pool":"akka.routing.RoundRobinPool"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.457303244Z {"@timestamp":"2018-01-31T11:56:47.456+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.router.type-mapping.scatter-gather-group":"akka.routing.ScatterGatherFirstCompletedGroup"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.471417217Z {"@timestamp":"2018-01-31T11:56:47.457+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.router.type-mapping.scatter-gather-pool":"akka.routing.ScatterGatherFirstCompletedPool"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.472362088Z {"@timestamp":"2018-01-31T11:56:47.471+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.router.type-mapping.smallest-mailbox-pool":"akka.routing.SmallestMailboxPool"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.473088721Z {"@timestamp":"2018-01-31T11:56:47.472+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.router.type-mapping.tail-chopping-group":"akka.routing.TailChoppingGroup"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.473656099Z {"@timestamp":"2018-01-31T11:56:47.473+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.router.type-mapping.tail-chopping-pool":"akka.routing.TailChoppingPool"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.474207904Z {"@timestamp":"2018-01-31T11:56:47.473+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.serialization-bindings.\"[B\"":"bytes"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.474861615Z {"@timestamp":"2018-01-31T11:56:47.474+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.serialization-bindings.\"java.io.Serializable\"":"java"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.475306233Z {"@timestamp":"2018-01-31T11:56:47.474+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.serialization-identifiers.\"akka.serialization.ByteArraySerializer\"":"4"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.475936457Z {"@timestamp":"2018-01-31T11:56:47.475+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.serialization-identifiers.\"akka.serialization.JavaSerializer\"":"1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.476567166Z {"@timestamp":"2018-01-31T11:56:47.476+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.serialize-creators":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.477122278Z {"@timestamp":"2018-01-31T11:56:47.476+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.serialize-messages":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.477686973Z {"@timestamp":"2018-01-31T11:56:47.477+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.serializers.bytes":"akka.serialization.ByteArraySerializer"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.478179172Z {"@timestamp":"2018-01-31T11:56:47.477+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.serializers.java":"akka.serialization.JavaSerializer"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.478783711Z {"@timestamp":"2018-01-31T11:56:47.478+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.typed.timeout":"5s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.479350350Z {"@timestamp":"2018-01-31T11:56:47.479+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.unstarted-push-timeout":"10s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.480122737Z {"@timestamp":"2018-01-31T11:56:47.479+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.warn-about-java-serializer-usage":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.481256858Z {"@timestamp":"2018-01-31T11:56:47.480+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.actor.warn-on-no-serialization-verification":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.481792076Z {"@timestamp":"2018-01-31T11:56:47.481+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.default-phase-timeout":"5 s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.482295899Z {"@timestamp":"2018-01-31T11:56:47.481+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.exit-jvm":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.482869691Z {"@timestamp":"2018-01-31T11:56:47.482+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.phases.actor-system-terminate.depends-on":"[before-actor-system-terminate]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.483489752Z {"@timestamp":"2018-01-31T11:56:47.483+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.phases.actor-system-terminate.timeout":"10 s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.484199340Z {"@timestamp":"2018-01-31T11:56:47.483+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.phases.before-actor-system-terminate.depends-on":"[cluster-shutdown]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.484912532Z {"@timestamp":"2018-01-31T11:56:47.484+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.phases.before-cluster-shutdown.depends-on":"[service-stop]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.485565287Z {"@timestamp":"2018-01-31T11:56:47.485+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.phases.cluster-exiting-done.depends-on":"[cluster-exiting]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.486246509Z {"@timestamp":"2018-01-31T11:56:47.485+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.phases.cluster-exiting.depends-on":"[cluster-leave]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.487194889Z {"@timestamp":"2018-01-31T11:56:47.486+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.phases.cluster-exiting.timeout":"10 s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.487949124Z {"@timestamp":"2018-01-31T11:56:47.487+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.phases.cluster-leave.depends-on":"[cluster-sharding-shutdown-region]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.489259423Z {"@timestamp":"2018-01-31T11:56:47.488+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.phases.cluster-sharding-shutdown-region.depends-on":"[before-cluster-shutdown]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.490203200Z {"@timestamp":"2018-01-31T11:56:47.489+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.phases.cluster-sharding-shutdown-region.timeout":"10 s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.490879359Z {"@timestamp":"2018-01-31T11:56:47.490+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.phases.cluster-shutdown.depends-on":"[cluster-exiting-done]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.491451478Z {"@timestamp":"2018-01-31T11:56:47.491+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.phases.service-requests-done.depends-on":"[service-unbind]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.491892473Z {"@timestamp":"2018-01-31T11:56:47.491+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.phases.service-stop.depends-on":"[service-requests-done]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.492495803Z {"@timestamp":"2018-01-31T11:56:47.492+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.phases.service-unbind.depends-on":"[before-service-unbind]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.493247957Z {"@timestamp":"2018-01-31T11:56:47.492+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.run-by-jvm-shutdown-hook":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.494117159Z {"@timestamp":"2018-01-31T11:56:47.493+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.coordinated-shutdown.terminate-actor-system":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.495072017Z {"@timestamp":"2018-01-31T11:56:47.494+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.daemonic":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.495698594Z {"@timestamp":"2018-01-31T11:56:47.495+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.extensions":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.496589631Z {"@timestamp":"2018-01-31T11:56:47.496+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.home":""},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.497508252Z {"@timestamp":"2018-01-31T11:56:47.496+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.client.connecting-timeout":"10s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.498594044Z {"@timestamp":"2018-01-31T11:56:47.497+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.client.idle-timeout":"60 s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.499429475Z {"@timestamp":"2018-01-31T11:56:47.498+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.client.log-unencrypted-network-bytes":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.500065047Z {"@timestamp":"2018-01-31T11:56:47.499+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.client.request-header-size-hint":"512"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.500741125Z {"@timestamp":"2018-01-31T11:56:47.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.client.socket-options.so-receive-buffer-size":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.501354874Z {"@timestamp":"2018-01-31T11:56:47.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.client.socket-options.so-reuse-address":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.502030976Z {"@timestamp":"2018-01-31T11:56:47.501+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.client.socket-options.so-send-buffer-size":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.502746270Z {"@timestamp":"2018-01-31T11:56:47.502+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.client.socket-options.so-traffic-class":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.503412509Z {"@timestamp":"2018-01-31T11:56:47.503+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.client.socket-options.tcp-keep-alive":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.504052986Z {"@timestamp":"2018-01-31T11:56:47.503+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.client.socket-options.tcp-no-delay":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.504657555Z {"@timestamp":"2018-01-31T11:56:47.504+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.client.socket-options.tcp-oob-inline":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.505458401Z {"@timestamp":"2018-01-31T11:56:47.505+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.client.user-agent-header":"akka-http/10.0.10"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.506444407Z {"@timestamp":"2018-01-31T11:56:47.505+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.client.connecting-timeout":"10s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.507084297Z {"@timestamp":"2018-01-31T11:56:47.506+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.client.idle-timeout":"60 s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.507704321Z {"@timestamp":"2018-01-31T11:56:47.507+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.client.request-header-size-hint":"512"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.508374917Z {"@timestamp":"2018-01-31T11:56:47.508+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.client.socket-options.so-receive-buffer-size":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.509191244Z {"@timestamp":"2018-01-31T11:56:47.508+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.client.socket-options.so-reuse-address":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.509942659Z {"@timestamp":"2018-01-31T11:56:47.509+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.client.socket-options.so-send-buffer-size":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.510357304Z {"@timestamp":"2018-01-31T11:56:47.510+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.client.socket-options.so-traffic-class":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.510956448Z {"@timestamp":"2018-01-31T11:56:47.510+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.client.socket-options.tcp-keep-alive":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.511599363Z {"@timestamp":"2018-01-31T11:56:47.511+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.client.socket-options.tcp-no-delay":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.512027761Z {"@timestamp":"2018-01-31T11:56:47.511+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.client.socket-options.tcp-oob-inline":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.512677749Z {"@timestamp":"2018-01-31T11:56:47.512+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.client.user-agent-header":"akka-http/10.0.10"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.513543535Z {"@timestamp":"2018-01-31T11:56:47.513+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.idle-timeout":"30 s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.514236636Z {"@timestamp":"2018-01-31T11:56:47.513+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.max-connections":"4"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.515054593Z {"@timestamp":"2018-01-31T11:56:47.514+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.max-open-requests":"32"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.515659309Z {"@timestamp":"2018-01-31T11:56:47.515+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.max-retries":"5"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.516200561Z {"@timestamp":"2018-01-31T11:56:47.515+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.min-connections":"0"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.516918862Z {"@timestamp":"2018-01-31T11:56:47.516+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.host-connection-pool.pipelining-limit":"1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.517468335Z {"@timestamp":"2018-01-31T11:56:47.517+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.cookie-parsing-mode":"rfc6265"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.518036072Z {"@timestamp":"2018-01-31T11:56:47.517+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.error-logging-verbosity":"full"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.518473975Z {"@timestamp":"2018-01-31T11:56:47.518+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.header-cache.Content-MD5":"0"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.518982408Z {"@timestamp":"2018-01-31T11:56:47.518+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.header-cache.Date":"0"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.519488820Z {"@timestamp":"2018-01-31T11:56:47.519+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.header-cache.If-Match":"0"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.520002526Z {"@timestamp":"2018-01-31T11:56:47.519+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.header-cache.If-Modified-Since":"0"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.520553793Z {"@timestamp":"2018-01-31T11:56:47.520+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.header-cache.If-None-Match":"0"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.533344234Z {"@timestamp":"2018-01-31T11:56:47.520+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.header-cache.If-Range":"0"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.534060330Z {"@timestamp":"2018-01-31T11:56:47.533+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.header-cache.If-Unmodified-Since":"0"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.534665421Z {"@timestamp":"2018-01-31T11:56:47.534+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.header-cache.User-Agent":"32"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.535344288Z {"@timestamp":"2018-01-31T11:56:47.535+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.header-cache.default":"12"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.535799669Z {"@timestamp":"2018-01-31T11:56:47.535+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.illegal-header-warnings":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.536240679Z {"@timestamp":"2018-01-31T11:56:47.535+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.illegal-response-header-value-processing-mode":"error"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.536660807Z {"@timestamp":"2018-01-31T11:56:47.536+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.max-chunk-ext-length":"256"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.537067708Z {"@timestamp":"2018-01-31T11:56:47.536+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.max-chunk-size":"1m"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.537600420Z {"@timestamp":"2018-01-31T11:56:47.537+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.max-content-length":"8m"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.538064136Z {"@timestamp":"2018-01-31T11:56:47.537+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.max-header-count":"64"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.538480050Z {"@timestamp":"2018-01-31T11:56:47.538+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.max-header-name-length":"64"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.538853171Z {"@timestamp":"2018-01-31T11:56:47.538+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.max-header-value-length":"8k"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.539275357Z {"@timestamp":"2018-01-31T11:56:47.538+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.max-method-length":"16"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.539765361Z {"@timestamp":"2018-01-31T11:56:47.539+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.max-response-reason-length":"64"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.541292637Z {"@timestamp":"2018-01-31T11:56:47.540+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.max-uri-length":"2k"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.541874193Z {"@timestamp":"2018-01-31T11:56:47.541+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.tls-session-info-header":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.544249851Z {"@timestamp":"2018-01-31T11:56:47.543+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.parsing.uri-parsing-mode":"strict"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.547670417Z {"@timestamp":"2018-01-31T11:56:47.546+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.routing.decode-max-bytes-per-chunk":"1m"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.548480025Z {"@timestamp":"2018-01-31T11:56:47.547+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.routing.file-get-conditional":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.549995973Z {"@timestamp":"2018-01-31T11:56:47.548+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.routing.file-io-dispatcher":"akka.stream.default-blocking-io-dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.551009856Z {"@timestamp":"2018-01-31T11:56:47.550+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.routing.range-coalescing-threshold":"80"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.551544240Z {"@timestamp":"2018-01-31T11:56:47.551+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.routing.range-count-limit":"16"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.552007583Z {"@timestamp":"2018-01-31T11:56:47.551+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.routing.render-vanity-footer":"yes"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.552811523Z {"@timestamp":"2018-01-31T11:56:47.552+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.routing.verbose-error-messages":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.553340292Z {"@timestamp":"2018-01-31T11:56:47.553+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.backlog":"100"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.553822776Z {"@timestamp":"2018-01-31T11:56:47.553+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.bind-timeout":"1s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.554234248Z {"@timestamp":"2018-01-31T11:56:47.553+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.default-host-header":""},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.554798037Z {"@timestamp":"2018-01-31T11:56:47.554+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.http2.incoming-connection-level-buffer-size":"10 MB"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.555389495Z {"@timestamp":"2018-01-31T11:56:47.554+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.http2.incoming-stream-level-buffer-size":"512kB"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.557906774Z {"@timestamp":"2018-01-31T11:56:47.555+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.http2.request-entity-chunk-size":"65536 b"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.558639735Z {"@timestamp":"2018-01-31T11:56:47.558+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.idle-timeout":"60 s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.559318525Z {"@timestamp":"2018-01-31T11:56:47.558+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.linger-timeout":"1 min"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.559902602Z {"@timestamp":"2018-01-31T11:56:47.559+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.log-unencrypted-network-bytes":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.560479770Z {"@timestamp":"2018-01-31T11:56:47.560+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.max-connections":"1024"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.561072850Z {"@timestamp":"2018-01-31T11:56:47.560+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.pipelining-limit":"16"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.561710526Z {"@timestamp":"2018-01-31T11:56:47.561+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.preview.enable-http2":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.562221641Z {"@timestamp":"2018-01-31T11:56:47.561+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.raw-request-uri-header":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.562882512Z {"@timestamp":"2018-01-31T11:56:47.562+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.remote-address-header":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.563345415Z {"@timestamp":"2018-01-31T11:56:47.563+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.request-timeout":"20 s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.563790974Z {"@timestamp":"2018-01-31T11:56:47.563+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.response-header-size-hint":"512"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.564209897Z {"@timestamp":"2018-01-31T11:56:47.563+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.server-header":"akka-http/10.0.10"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.564654075Z {"@timestamp":"2018-01-31T11:56:47.564+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.socket-options.so-receive-buffer-size":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.565165686Z {"@timestamp":"2018-01-31T11:56:47.564+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.socket-options.so-reuse-address":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.569108884Z {"@timestamp":"2018-01-31T11:56:47.567+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.socket-options.so-send-buffer-size":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.570325014Z {"@timestamp":"2018-01-31T11:56:47.569+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.socket-options.so-traffic-class":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.571223777Z {"@timestamp":"2018-01-31T11:56:47.570+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.socket-options.tcp-keep-alive":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.573009498Z {"@timestamp":"2018-01-31T11:56:47.572+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.socket-options.tcp-no-delay":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.573527329Z {"@timestamp":"2018-01-31T11:56:47.573+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.socket-options.tcp-oob-inline":"undefined"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.573929587Z {"@timestamp":"2018-01-31T11:56:47.573+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.transparent-head-requests":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.574559593Z {"@timestamp":"2018-01-31T11:56:47.574+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.server.verbose-error-messages":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.575975365Z {"@timestamp":"2018-01-31T11:56:47.575+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.http.version":"10.0.10"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.576618209Z {"@timestamp":"2018-01-31T11:56:47.576+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.dns.dispatcher":"akka.actor.default-dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.577942125Z {"@timestamp":"2018-01-31T11:56:47.577+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.dns.inet-address.cache-cleanup-interval":"120s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.578681899Z {"@timestamp":"2018-01-31T11:56:47.578+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.dns.inet-address.negative-ttl":"default"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.579454807Z {"@timestamp":"2018-01-31T11:56:47.579+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.dns.inet-address.positive-ttl":"default"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.581217888Z {"@timestamp":"2018-01-31T11:56:47.580+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.dns.inet-address.provider-object":"akka.io.InetAddressDnsProvider"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.582757442Z {"@timestamp":"2018-01-31T11:56:47.581+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.dns.resolver":"inet-address"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.583415796Z {"@timestamp":"2018-01-31T11:56:47.582+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.pinned-dispatcher.executor":"thread-pool-executor"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.583906970Z {"@timestamp":"2018-01-31T11:56:47.583+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.pinned-dispatcher.thread-pool-executor.allow-core-timeout":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.584349907Z {"@timestamp":"2018-01-31T11:56:47.584+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.pinned-dispatcher.type":"PinnedDispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.585227995Z {"@timestamp":"2018-01-31T11:56:47.584+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.tcp.batch-accept-limit":"10"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.586171445Z {"@timestamp":"2018-01-31T11:56:47.585+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.tcp.direct-buffer-pool-limit":"1000"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.587111465Z {"@timestamp":"2018-01-31T11:56:47.586+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.tcp.direct-buffer-size":"128 KiB"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.588071018Z {"@timestamp":"2018-01-31T11:56:47.587+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.tcp.file-io-dispatcher":"akka.actor.default-blocking-io-dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.589195892Z {"@timestamp":"2018-01-31T11:56:47.588+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.tcp.file-io-transferTo-limit":"512 KiB"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.590180136Z {"@timestamp":"2018-01-31T11:56:47.589+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.tcp.finish-connect-retries":"5"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.590887463Z {"@timestamp":"2018-01-31T11:56:47.590+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.tcp.management-dispatcher":"akka.actor.default-dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.592256340Z {"@timestamp":"2018-01-31T11:56:47.591+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.tcp.max-channels":"256000"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.592805953Z {"@timestamp":"2018-01-31T11:56:47.592+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.tcp.max-received-message-size":"unlimited"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.594078473Z {"@timestamp":"2018-01-31T11:56:47.593+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.tcp.nr-of-selectors":"1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.594673156Z {"@timestamp":"2018-01-31T11:56:47.594+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.tcp.register-timeout":"5s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.595266187Z {"@timestamp":"2018-01-31T11:56:47.594+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.tcp.selector-association-retries":"10"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.595806492Z {"@timestamp":"2018-01-31T11:56:47.595+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.tcp.selector-dispatcher":"akka.io.pinned-dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.596375886Z {"@timestamp":"2018-01-31T11:56:47.595+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.tcp.trace-logging":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.596871992Z {"@timestamp":"2018-01-31T11:56:47.596+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.tcp.windows-connection-abort-workaround-enabled":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.597347203Z {"@timestamp":"2018-01-31T11:56:47.597+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.tcp.worker-dispatcher":"akka.actor.default-dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.597879926Z {"@timestamp":"2018-01-31T11:56:47.597+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp-connected.direct-buffer-pool-limit":"1000"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.598352788Z {"@timestamp":"2018-01-31T11:56:47.598+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp-connected.direct-buffer-size":"128 KiB"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.598996518Z {"@timestamp":"2018-01-31T11:56:47.598+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp-connected.management-dispatcher":"akka.actor.default-dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.599357862Z {"@timestamp":"2018-01-31T11:56:47.599+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp-connected.max-channels":"4096"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.599883430Z {"@timestamp":"2018-01-31T11:56:47.599+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp-connected.nr-of-selectors":"1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.600366775Z {"@timestamp":"2018-01-31T11:56:47.599+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp-connected.receive-throughput":"3"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.600838561Z {"@timestamp":"2018-01-31T11:56:47.600+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp-connected.select-timeout":"infinite"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.601407671Z {"@timestamp":"2018-01-31T11:56:47.600+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp-connected.selector-association-retries":"10"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.601776670Z {"@timestamp":"2018-01-31T11:56:47.601+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp-connected.selector-dispatcher":"akka.io.pinned-dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.602133536Z {"@timestamp":"2018-01-31T11:56:47.601+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp-connected.trace-logging":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.602534634Z {"@timestamp":"2018-01-31T11:56:47.602+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp-connected.worker-dispatcher":"akka.actor.default-dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.603087764Z {"@timestamp":"2018-01-31T11:56:47.602+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp.direct-buffer-pool-limit":"1000"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.603585956Z {"@timestamp":"2018-01-31T11:56:47.603+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp.direct-buffer-size":"128 KiB"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.604213594Z {"@timestamp":"2018-01-31T11:56:47.603+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp.management-dispatcher":"akka.actor.default-dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.604737777Z {"@timestamp":"2018-01-31T11:56:47.604+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp.max-channels":"4096"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.605363787Z {"@timestamp":"2018-01-31T11:56:47.604+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp.nr-of-selectors":"1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.610019183Z {"@timestamp":"2018-01-31T11:56:47.609+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp.receive-throughput":"3"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.610686109Z {"@timestamp":"2018-01-31T11:56:47.610+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp.select-timeout":"infinite"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.612055475Z {"@timestamp":"2018-01-31T11:56:47.610+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp.selector-association-retries":"10"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.613813263Z {"@timestamp":"2018-01-31T11:56:47.612+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp.selector-dispatcher":"akka.io.pinned-dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.615576973Z {"@timestamp":"2018-01-31T11:56:47.614+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp.trace-logging":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.617069607Z {"@timestamp":"2018-01-31T11:56:47.615+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.io.udp.worker-dispatcher":"akka.actor.default-dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.617910144Z {"@timestamp":"2018-01-31T11:56:47.617+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.jvm-exit-on-fatal-error":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.619610642Z {"@timestamp":"2018-01-31T11:56:47.618+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.library-extensions":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.621208256Z {"@timestamp":"2018-01-31T11:56:47.620+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.log-config-on-start":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.621788935Z {"@timestamp":"2018-01-31T11:56:47.621+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.log-dead-letters":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.622848137Z {"@timestamp":"2018-01-31T11:56:47.622+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.log-dead-letters-during-shutdown":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.623946850Z {"@timestamp":"2018-01-31T11:56:47.623+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.logger-startup-timeout":"30s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.625230340Z {"@timestamp":"2018-01-31T11:56:47.624+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.loggers":"[akka.event.slf4j.Slf4jLogger]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.626210837Z {"@timestamp":"2018-01-31T11:56:47.625+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.loggers-dispatcher":"akka.actor.default-dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.627283572Z {"@timestamp":"2018-01-31T11:56:47.626+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.logging-filter":"akka.event.slf4j.Slf4jLoggingFilter"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.627921383Z {"@timestamp":"2018-01-31T11:56:47.627+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.loglevel":"DEBUG"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.629442225Z {"@timestamp":"2018-01-31T11:56:47.628+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.scheduler.implementation":"akka.actor.LightArrayRevolverScheduler"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.630068180Z {"@timestamp":"2018-01-31T11:56:47.629+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.scheduler.shutdown-timeout":"5s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.630706949Z {"@timestamp":"2018-01-31T11:56:47.630+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.scheduler.tick-duration":"10ms"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.631181866Z {"@timestamp":"2018-01-31T11:56:47.630+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.scheduler.ticks-per-wheel":"512"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.631709085Z {"@timestamp":"2018-01-31T11:56:47.631+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.ssl-config.protocol":"TLSv1.2"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.632266829Z {"@timestamp":"2018-01-31T11:56:47.631+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stdout-loglevel":"OFF"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.632833739Z {"@timestamp":"2018-01-31T11:56:47.632+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stream.blocking-io-dispatcher":"akka.stream.default-blocking-io-dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.633442761Z {"@timestamp":"2018-01-31T11:56:47.632+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stream.default-blocking-io-dispatcher.executor":"thread-pool-executor"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.634126510Z {"@timestamp":"2018-01-31T11:56:47.633+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stream.default-blocking-io-dispatcher.thread-pool-executor.fixed-pool-size":"16"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.635181285Z {"@timestamp":"2018-01-31T11:56:47.634+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stream.default-blocking-io-dispatcher.throughput":"1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.635694086Z {"@timestamp":"2018-01-31T11:56:47.635+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stream.default-blocking-io-dispatcher.type":"Dispatcher"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.639658612Z {"@timestamp":"2018-01-31T11:56:47.638+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stream.materializer.auto-fusing":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.640224001Z {"@timestamp":"2018-01-31T11:56:47.639+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stream.materializer.debug-logging":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.641247346Z {"@timestamp":"2018-01-31T11:56:47.640+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stream.materializer.debug.fuzzing-mode":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.642244674Z {"@timestamp":"2018-01-31T11:56:47.641+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stream.materializer.dispatcher":""},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.643629325Z {"@timestamp":"2018-01-31T11:56:47.643+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stream.materializer.initial-input-buffer-size":"4"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.644706204Z {"@timestamp":"2018-01-31T11:56:47.643+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stream.materializer.max-fixed-buffer-size":"1000000000"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.645333846Z {"@timestamp":"2018-01-31T11:56:47.645+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stream.materializer.max-input-buffer-size":"16"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.646246256Z {"@timestamp":"2018-01-31T11:56:47.645+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stream.materializer.output-burst-limit":"1000"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.647661080Z {"@timestamp":"2018-01-31T11:56:47.646+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stream.materializer.subscription-timeout.mode":"cancel"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.648266149Z {"@timestamp":"2018-01-31T11:56:47.647+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stream.materializer.subscription-timeout.timeout":"5s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.649014814Z {"@timestamp":"2018-01-31T11:56:47.648+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.stream.materializer.sync-processing-limit":"1000"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.649985953Z {"@timestamp":"2018-01-31T11:56:47.649+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"akka.version":"2.5.7"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.652449288Z {"@timestamp":"2018-01-31T11:56:47.652+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"aws.region":"us-east-1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.653050118Z {"@timestamp":"2018-01-31T11:56:47.652+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"aws.sqs.endpoint":"http://queue:4576/"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.653601916Z {"@timestamp":"2018-01-31T11:56:47.653+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"aws.sqs.receive-message-wait-time":"10s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.654141830Z {"@timestamp":"2018-01-31T11:56:47.653+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"aws.sqs.topic":"messages"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.655399570Z {"@timestamp":"2018-01-31T11:56:47.654+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"awt.toolkit":"sun.awt.X11.XToolkit"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.656182947Z {"@timestamp":"2018-01-31T11:56:47.655+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"com.newrelic.agent.deps.org.apache.commons.logging.LogFactory":"com.newrelic.agent.logging.ApacheCommonsAdaptingLogFactory"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.656721767Z {"@timestamp":"2018-01-31T11:56:47.656+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"env.optional.TEST_ACTOR_CREATOR_SERIALISATION":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.657282781Z {"@timestamp":"2018-01-31T11:56:47.656+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"env.optional.TEST_ACTOR_MESSAGE_SERIALISATION":"on"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.659247456Z {"@timestamp":"2018-01-31T11:56:47.657+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"env.required.APPLICATION_SECRET":"change_me"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.660957951Z {"@timestamp":"2018-01-31T11:56:47.660+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"env.required.APP_HOST":"0.0.0.0"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.662367764Z {"@timestamp":"2018-01-31T11:56:47.661+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"env.required.APP_PORT":"9000"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.663061063Z {"@timestamp":"2018-01-31T11:56:47.662+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"env.required.AWS_REGION":"us-east-1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.665111248Z {"@timestamp":"2018-01-31T11:56:47.663+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"env.required.SQS_ENDPOINT":"http://queue:4576/"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.665948400Z {"@timestamp":"2018-01-31T11:56:47.665+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"env.required.SQS_TOPIC":"messages"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.667414737Z {"@timestamp":"2018-01-31T11:56:47.666+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"env.required.VARIANT_WORKER_HOST":"variant"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.668946077Z {"@timestamp":"2018-01-31T11:56:47.667+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"env.required.VARIANT_WORKER_PORT":"9002"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.669659561Z {"@timestamp":"2018-01-31T11:56:47.669+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"environment.appName":"ripcut"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.671221457Z {"@timestamp":"2018-01-31T11:56:47.669+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"environment.env":"unset"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.672736858Z {"@timestamp":"2018-01-31T11:56:47.671+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"file.encoding.pkg":"sun.io"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.673408641Z {"@timestamp":"2018-01-31T11:56:47.672+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"file.separator":"/"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.675636755Z {"@timestamp":"2018-01-31T11:56:47.674+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.awt.graphicsenv":"sun.awt.X11GraphicsEnvironment"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.677063189Z {"@timestamp":"2018-01-31T11:56:47.675+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.awt.printerjob":"sun.print.PSPrinterJob"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.679473134Z {"@timestamp":"2018-01-31T11:56:47.678+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.class.path":"/opt/docker/lib/../conf/:/opt/docker/lib/com.bamtech.cde.frontend-CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT-sans-externalized.jar:/opt/docker/lib/com.bamtech.cde.common-CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT.jar:/opt/docker/lib/org.apache.commons.commons-lang3-3.6.jar:/opt/docker/lib/org.typelevel.cats-macros_2.11-1.0.0-MF.jar:/opt/docker/lib/com.typesafe.play.play-ws_2.11-2.6.7.jar:/opt/docker/lib/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.6.7.jar:/opt/docker/lib/org.scala-lang.modules.scala-java8-compat_2.11-0.8.0.jar:/opt/docker/lib/com.google.inject.extensions.guice-assistedinject-4.1.0.jar:/opt/docker/lib/com.typesafe.play.play-streams_2.11-2.6.7.jar:/opt/docker/lib/com.typesafe.play.play-ahc-ws_2.11-2.6.7.jar:/opt/docker/lib/eu.timepit.refined_2.11-0.8.4.jar:/opt/docker/lib/com.typesafe.config-1.3.2.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-bmp-3.3.2.jar:/opt/docker/lib/com.fasterxml.jackson.core.jackson-databind-2.8.10.jar:/opt/docker/lib/com.amazonaws.jmespath-java-1.11.234.jar:/opt/docker/lib/com.typesafe.play.play-json_2.11-2.6.7.jar:/opt/docker/lib/org.reactivestreams.reactive-streams-1.0.1.jar:/opt/docker/lib/com.typesafe.play.build-link-2.6.7.jar:/opt/docker/lib/com.typesafe.play.play-server_2.11-2.6.7.jar:/opt/docker/lib/org.scala-lang.scala-reflect-2.11.12.jar:/opt/docker/lib/com.typesafe.play.play-ws-standalone-json_2.11-1.1.3.jar:/opt/docker/lib/com.typesafe.play.twirl-api_2.11-1.3.12.jar:/opt/docker/lib/com.typesafe.play.cachecontrol_2.11-1.1.2.jar:/opt/docker/lib/org.scala-lang.modules.scala-xml_2.11-1.0.6.jar:/opt/docker/lib/io.jsonwebtoken.jjwt-0.7.0.jar:/opt/docker/lib/commons-logging.commons-logging-1.2.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-tiff-3.3.2.jar:/opt/docker/lib/org.typelevel.cats-core_2.11-1.0.0-MF.jar:/opt/docker/lib/org.typelevel.macro-compat_2.11-1.1.1.jar:/opt/docker/lib/com.typesafe.play.shaded-oauth-1.1.3.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-thumbsdb-3.3.2.jar:/opt/docker/lib/com.google.inject.guice-4.1.0.jar:/opt/docker/lib/com.twelvemonkeys.common.common-io-3.3.2.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-psd-3.3.2.jar:/opt/docker/lib/com.google.j2objc.j2objc-annotations-1.1.jar:/opt/docker/lib/org.slf4j.jul-to-slf4j-1.7.25.jar:/opt/docker/lib/commons-codec.commons-codec-1.10.jar:/opt/docker/lib/org.apache.httpcomponents.httpcore-4.4.6.jar:/opt/docker/lib/ar.com.hjg.pngj-2.1.0.jar:/opt/docker/lib/com.sksamuel.scrimage.scrimage-core_2.11-3.0.0-alpha4.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-metadata-3.3.2.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-pcx-3.3.2.jar:/opt/docker/lib/org.webjars.swagger-ui-3.4.4.jar:/opt/docker/lib/com.fasterxml.jackson.datatype.jackson-datatype-jdk8-2.8.10.jar:/opt/docker/lib/com.typesafe.akka.akka-slf4j_2.11-2.5.6.jar:/opt/docker/lib/com.amazonaws.aws-java-sdk-s3-1.11.234.jar:/opt/docker/lib/ch.qos.logback.logback-classic-1.2.3.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-pnm-3.3.2.jar:/opt/docker/lib/org.jctools.jctools-core-2.0.1.jar:/opt/docker/lib/com.google.errorprone.error_prone_annotations-2.0.18.jar:/opt/docker/lib/com.google.guava.guava-23.0.jar:/opt/docker/lib/com.typesafe.play.play-guice_2.11-2.6.7.jar:/opt/docker/lib/org.typelevel.machinist_2.11-0.6.2.jar:/opt/docker/lib/javax.cache.cache-api-1.0.0.jar:/opt/docker/lib/aopalliance.aopalliance-1.0.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-core-3.3.2.jar:/opt/docker/lib/com.sksamuel.scrimage.scrimage-io-extra_2.11-3.0.0-alpha4.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-icns-3.3.2.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-jpeg-3.3.2.jar:/opt/docker/lib/com.adobe.xmp.xmpcore-5.1.3.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-sgi-3.3.2.jar:/opt/docker/lib/com.typesafe.ssl-config-core_2.11-0.2.2.jar:/opt/docker/lib/com.typesafe.play.play-exceptions-2.6.7.jar:/opt/docker/lib/org.scala-lang.scala-compiler-2.11.12.jar:/opt/docker/lib/org.scala-lang.modules.scala-parser-combinators_2.11-1.0.6.jar:/opt/docker/lib/com.typesafe.akka.akka-stream_2.11-2.5.6.jar:/opt/docker/lib/com.drewnoakes.metadata-extractor-2.10.1.jar:/opt/docker/lib/com.typesafe.play.play-ws-standalone_2.11-1.1.3.jar:/opt/docker/lib/commons-io.commons-io-2.5.jar:/opt/docker/lib/com.typesafe.play.filters-helpers_2.11-2.6.7.jar:/opt/docker/lib/io.monix.monix-execution_2.11-2.3.2.jar:/opt/docker/lib/com.typesafe.play.play-logback_2.11-2.6.7.jar:/opt/docker/lib/net.logstash.logback.logstash-logback-encoder-4.11.jar:/opt/docker/lib/com.typesafe.akka.akka-http-spray-json_2.11-10.0.10.jar:/opt/docker/lib/com.fasterxml.jackson.core.jackson-core-2.8.10.jar:/opt/docker/lib/joda-time.joda-time-2.9.9.jar:/opt/docker/lib/org.typelevel.cats-kernel_2.11-1.0.0-MF.jar:/opt/docker/lib/com.typesafe.play.play-ahc-ws-standalone_2.11-1.1.3.jar:/opt/docker/lib/org.codehaus.mojo.animal-sniffer-annotations-1.14.jar:/opt/docker/lib/com.typesafe.play.shaded-asynchttpclient-1.1.3.jar:/opt/docker/lib/org.slf4j.jcl-over-slf4j-1.7.25.jar:/opt/docker/lib/com.typesafe.play.play-netty-utils-2.6.7.jar:/opt/docker/lib/com.twelvemonkeys.common.common-image-3.3.2.jar:/opt/docker/lib/software.amazon.ion.ion-java-1.0.2.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-iff-3.3.2.jar:/opt/docker/lib/com.amazonaws.aws-java-sdk-kms-1.11.234.jar:/opt/docker/lib/com.google.code.findbugs.jsr305-3.0.2.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-pict-3.3.2.jar:/opt/docker/lib/javax.transaction.jta-1.1.jar:/opt/docker/lib/com.typesafe.akka.akka-http-core_2.11-10.0.10.jar:/opt/docker/lib/javax.inject.javax.inject-1.jar:/opt/docker/lib/org.slf4j.slf4j-api-1.7.25.jar:/opt/docker/lib/io.monix.monix-types_2.11-2.3.2.jar:/opt/docker/lib/ch.qos.logback.logback-core-1.2.3.jar:/opt/docker/lib/com.twelvemonkeys.common.common-lang-3.3.2.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-pdf-3.3.2.jar:/opt/docker/lib/io.spray.spray-json_2.11-1.3.3.jar:/opt/docker/lib/com.typesafe.akka.akka-actor_2.11-2.5.7.jar:/opt/docker/lib/com.typesafe.akka.akka-parsing_2.11-10.0.10.jar:/opt/docker/lib/com.typesafe.play.play-functional_2.11-2.6.7.jar:/opt/docker/lib/com.typesafe.akka.akka-http_2.11-10.0.10.jar:/opt/docker/lib/net.cakesolutions.validated-config_2.11-1.1.2.jar:/opt/docker/lib/com.amazonaws.aws-java-sdk-core-1.11.234.jar:/opt/docker/lib/com.amazonaws.aws-java-sdk-sqs-1.11.234.jar:/opt/docker/lib/com.fasterxml.jackson.core.jackson-annotations-2.8.10.jar:/opt/docker/lib/com.chuusai.shapeless_2.11-2.3.2.jar:/opt/docker/lib/org.apache.httpcomponents.httpclient-4.5.3.jar:/opt/docker/lib/io.monix.monix-reactive_2.11-2.3.2.jar:/opt/docker/lib/org.joda.joda-convert-1.7.jar:/opt/docker/lib/com.typesafe.play.play-ws-standalone-xml_2.11-1.1.3.jar:/opt/docker/lib/com.iheart.ficus_2.11-1.4.1.jar:/opt/docker/lib/com.newrelic.agent.java.newrelic-api-3.45.0.jar:/opt/docker/lib/com.fasterxml.jackson.datatype.jackson-datatype-jsr310-2.8.10.jar:/opt/docker/lib/com.twelvemonkeys.imageio.imageio-tga-3.3.2.jar:/opt/docker/lib/org.scala-lang.scala-library-2.11.12.jar:/opt/docker/lib/com.typesafe.play.play-akka-http-server_2.11-2.6.7.jar:/opt/docker/lib/com.typesafe.play.play_2.11-2.6.7.jar:/opt/docker/lib/io.monix.monix-eval_2.11-2.3.2.jar:/opt/docker/lib/com.bamtech.cde.frontend-CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT-assets.jar:/opt/docker/bin/../newrelic/newrelic.jar"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.680194533Z {"@timestamp":"2018-01-31T11:56:47.679+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.class.version":"52.0"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.681745066Z {"@timestamp":"2018-01-31T11:56:47.681+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.endorsed.dirs":"/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/endorsed"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.682768335Z {"@timestamp":"2018-01-31T11:56:47.682+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.ext.dirs":"/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext:/usr/java/packages/lib/ext"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.684093026Z {"@timestamp":"2018-01-31T11:56:47.683+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.home":"/usr/lib/jvm/java-8-openjdk-amd64/jre"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.684899502Z {"@timestamp":"2018-01-31T11:56:47.684+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.io.tmpdir":"/tmp"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.686309959Z {"@timestamp":"2018-01-31T11:56:47.685+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.library.path":"/usr/java/packages/lib/amd64:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.688014926Z {"@timestamp":"2018-01-31T11:56:47.687+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.runtime.name":"OpenJDK Runtime Environment"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.688770428Z {"@timestamp":"2018-01-31T11:56:47.688+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.runtime.version":"1.8.0_151-8u151-b12-1~deb9u1-b12"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.689841072Z {"@timestamp":"2018-01-31T11:56:47.689+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.specification.name":"Java Platform API Specification"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.691318989Z {"@timestamp":"2018-01-31T11:56:47.690+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.specification.vendor":"Oracle Corporation"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.692586105Z {"@timestamp":"2018-01-31T11:56:47.691+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.specification.version":"1.8"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.693581810Z {"@timestamp":"2018-01-31T11:56:47.692+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vendor.url.bug":"http://bugreport.sun.com/bugreport/"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.695129631Z {"@timestamp":"2018-01-31T11:56:47.694+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.version":"1.8.0_151"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.696540155Z {"@timestamp":"2018-01-31T11:56:47.695+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vm.info":"mixed mode"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.697393514Z {"@timestamp":"2018-01-31T11:56:47.696+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vm.name":"OpenJDK 64-Bit Server VM"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.698816180Z {"@timestamp":"2018-01-31T11:56:47.698+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vm.specification.name":"Java Virtual Machine Specification"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.700232961Z {"@timestamp":"2018-01-31T11:56:47.699+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vm.specification.vendor":"Oracle Corporation"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.700889496Z {"@timestamp":"2018-01-31T11:56:47.700+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vm.specification.version":"1.8"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.701617194Z {"@timestamp":"2018-01-31T11:56:47.701+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vm.vendor":"Oracle Corporation"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.702283884Z {"@timestamp":"2018-01-31T11:56:47.701+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"java.vm.version":"25.151-b12"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.702912340Z {"@timestamp":"2018-01-31T11:56:47.702+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"line.separator":"\n"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.703484791Z {"@timestamp":"2018-01-31T11:56:47.703+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"newrelic.environment":"local"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.704197713Z {"@timestamp":"2018-01-31T11:56:47.703+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"os.arch":"amd64"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.704924358Z {"@timestamp":"2018-01-31T11:56:47.704+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"os.name":"Linux"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.705443804Z {"@timestamp":"2018-01-31T11:56:47.704+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"os.version":"4.9.60-linuxkit-aufs"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.706106631Z {"@timestamp":"2018-01-31T11:56:47.705+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"partners.whitelist":"[launchpad, test-partner-id, test-partner-id-beta]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.706725256Z {"@timestamp":"2018-01-31T11:56:47.706+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"path.separator":":"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.707560986Z {"@timestamp":"2018-01-31T11:56:47.707+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.akka.actor-system":"application"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.708303200Z {"@timestamp":"2018-01-31T11:56:47.707+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.akka.blockingIoDispatcher.fork-join-executor.parallelism-factor":"3"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.709197717Z {"@timestamp":"2018-01-31T11:56:47.708+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.akka.config":"akka"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.709572832Z {"@timestamp":"2018-01-31T11:56:47.709+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.akka.dev-mode.akka.log-dead-letters":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.710104826Z {"@timestamp":"2018-01-31T11:56:47.709+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.akka.dev-mode.http.server.transparent-head-requests":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.710878215Z {"@timestamp":"2018-01-31T11:56:47.710+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.akka.dev-mode.log-dead-letters":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.711487120Z {"@timestamp":"2018-01-31T11:56:47.711+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.allowGlobalApplication":"true"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.712150977Z {"@timestamp":"2018-01-31T11:56:47.711+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.application.loader":"com.bamtech.cde.ripcut.core.ApplicationBootstrapping"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.712819978Z {"@timestamp":"2018-01-31T11:56:47.712+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.assets.aggressiveCache":"public, max-age=31536000, immutable"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.715054812Z {"@timestamp":"2018-01-31T11:56:47.714+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.assets.default.charset":"utf-8"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.715726542Z {"@timestamp":"2018-01-31T11:56:47.715+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.assets.defaultCache":"public, max-age=3600"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.716688420Z {"@timestamp":"2018-01-31T11:56:47.716+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.assets.digest.algorithm":"md5"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.717341924Z {"@timestamp":"2018-01-31T11:56:47.716+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.assets.encodings":"[{extension=br, accept=br}, {extension=gz, accept=gzip}, {extension=xz, accept=xz}, {extension=bz2, accept=bz2}]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.717883725Z {"@timestamp":"2018-01-31T11:56:47.717+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.assets.path":"/public"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.718276320Z {"@timestamp":"2018-01-31T11:56:47.717+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.assets.textContentTypes":"[application/json, application/javascript]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.718853912Z {"@timestamp":"2018-01-31T11:56:47.718+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.assets.urlPrefix":"/assets"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.719343764Z {"@timestamp":"2018-01-31T11:56:47.719+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.cors.exposedHeaders":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.719907076Z {"@timestamp":"2018-01-31T11:56:47.719+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.cors.pathPrefixes":"[/]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.720310321Z {"@timestamp":"2018-01-31T11:56:47.719+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.cors.preflightMaxAge":"1 hour"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.721004074Z {"@timestamp":"2018-01-31T11:56:47.720+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.cors.serveForbiddenOrigins":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.721459956Z {"@timestamp":"2018-01-31T11:56:47.721+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.cors.supportsCredentials":"true"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.722030539Z {"@timestamp":"2018-01-31T11:56:47.721+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.csrf.body.bufferSize":"100k"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.722579126Z {"@timestamp":"2018-01-31T11:56:47.722+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.csrf.bypassCorsTrustedOrigins":"true"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.723119125Z {"@timestamp":"2018-01-31T11:56:47.722+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.csrf.contentType.blackList":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.723701121Z {"@timestamp":"2018-01-31T11:56:47.723+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.csrf.contentType.whiteList":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.724217786Z {"@timestamp":"2018-01-31T11:56:47.723+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.csrf.cookie.httpOnly":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.724835867Z {"@timestamp":"2018-01-31T11:56:47.724+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.csrf.cookie.secure":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.725353019Z {"@timestamp":"2018-01-31T11:56:47.724+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.csrf.header.name":"Csrf-Token"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.725917665Z {"@timestamp":"2018-01-31T11:56:47.725+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.csrf.header.protectHeaders.Authorization":"*"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.726390331Z {"@timestamp":"2018-01-31T11:56:47.726+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.csrf.header.protectHeaders.Cookie":"*"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.726885423Z {"@timestamp":"2018-01-31T11:56:47.726+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.csrf.method.blackList":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.727545280Z {"@timestamp":"2018-01-31T11:56:47.727+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.csrf.method.whiteList":"[GET, HEAD, OPTIONS]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.728134374Z {"@timestamp":"2018-01-31T11:56:47.727+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.csrf.routeModifiers.blackList":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.728709808Z {"@timestamp":"2018-01-31T11:56:47.728+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.csrf.routeModifiers.whiteList":"[nocsrf]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.729137942Z {"@timestamp":"2018-01-31T11:56:47.728+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.csrf.token.name":"csrfToken"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.729577180Z {"@timestamp":"2018-01-31T11:56:47.729+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.csrf.token.sign":"true"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.730043467Z {"@timestamp":"2018-01-31T11:56:47.729+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.disabled":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.730469904Z {"@timestamp":"2018-01-31T11:56:47.730+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.enabled":"[play.filters.csrf.CSRFFilter, play.filters.headers.SecurityHeadersFilter, play.filters.hosts.AllowedHostsFilter, play.filters.cors.CORSFilter]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.731100726Z {"@timestamp":"2018-01-31T11:56:47.730+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.gzip.bufferSize":"8k"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.731821168Z {"@timestamp":"2018-01-31T11:56:47.731+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.gzip.chunkedThreshold":"100k"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.732565077Z {"@timestamp":"2018-01-31T11:56:47.732+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.gzip.contentType.blackList":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.733161321Z {"@timestamp":"2018-01-31T11:56:47.732+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.gzip.contentType.whiteList":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.733678455Z {"@timestamp":"2018-01-31T11:56:47.733+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.headers.allowActionSpecificHeaders":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.734349778Z {"@timestamp":"2018-01-31T11:56:47.733+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.headers.contentTypeOptions":"nosniff"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.738419977Z {"@timestamp":"2018-01-31T11:56:47.734+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.headers.frameOptions":"DENY"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.739746652Z {"@timestamp":"2018-01-31T11:56:47.738+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.headers.permittedCrossDomainPolicies":"master-only"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.740621544Z {"@timestamp":"2018-01-31T11:56:47.739+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.headers.referrerPolicy":"origin-when-cross-origin, strict-origin-when-cross-origin"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.741307093Z {"@timestamp":"2018-01-31T11:56:47.740+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.headers.xssProtection":"1; mode=block"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.742544478Z {"@timestamp":"2018-01-31T11:56:47.742+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.hosts.allowed":"[.]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.743481421Z {"@timestamp":"2018-01-31T11:56:47.742+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.https.redirectStatusCode":"308"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.744349241Z {"@timestamp":"2018-01-31T11:56:47.743+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.filters.https.strictTransportSecurity":"max-age=31536000; includeSubDomains"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.745288090Z {"@timestamp":"2018-01-31T11:56:47.744+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.actionComposition.controllerAnnotationsFirst":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.746037082Z {"@timestamp":"2018-01-31T11:56:47.745+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.actionComposition.executeActionCreatorActionFirst":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.747551768Z {"@timestamp":"2018-01-31T11:56:47.746+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.context":"/"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.749425854Z {"@timestamp":"2018-01-31T11:56:47.747+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.cookies.strict":"true"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.756866257Z {"@timestamp":"2018-01-31T11:56:47.750+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.fileMimeTypes":"\n 3dm=x-world/x-3dmf\n 3dmf=x-world/x-3dmf\n 7z=application/x-7z-compressed\n a=application/octet-stream\n aab=application/x-authorware-bin\n aam=application/x-authorware-map\n aas=application/x-authorware-seg\n abc=text/vndabc\n ace=application/x-ace-compressed\n acgi=text/html\n afl=video/animaflex\n ai=application/postscript\n aif=audio/aiff\n aifc=audio/aiff\n aiff=audio/aiff\n aim=application/x-aim\n aip=text/x-audiosoft-intra\n alz=application/x-alz-compressed\n ani=application/x-navi-animation\n aos=application/x-nokia-9000-communicator-add-on-software\n aps=application/mime\n arc=application/x-arc-compressed\n arj=application/arj\n art=image/x-jg\n asf=video/x-ms-asf\n asm=text/x-asm\n asp=text/asp\n asx=application/x-mplayer2\n au=audio/basic\n avi=video/x-msvideo\n avs=video/avs-video\n bcpio=application/x-bcpio\n bin=application/mac-binary\n bmp=image/bmp\n boo=application/book\n book=application/book\n boz=application/x-bzip2\n bsh=application/x-bsh\n bz2=application/x-bzip2\n bz=application/x-bzip\n c++=text/plain\n c=text/x-c\n cab=application/vnd.ms-cab-compressed\n cat=application/vndms-pkiseccat\n cc=text/x-c\n ccad=application/clariscad\n cco=application/x-cocoa\n cdf=application/cdf\n cer=application/pkix-cert\n cha=application/x-chat\n chat=application/x-chat\n chrt=application/vnd.kde.kchart\n class=application/java\n # ? class=application/java-vm\n com=text/plain\n conf=text/plain\n cpio=application/x-cpio\n cpp=text/x-c\n cpt=application/mac-compactpro\n crl=application/pkcs-crl\n crt=application/pkix-cert\n crx=application/x-chrome-extension\n csh=text/x-scriptcsh\n css=text/css\n csv=text/csv\n cxx=text/plain\n dar=application/x-dar\n dcr=application/x-director\n deb=application/x-debian-package\n deepv=application/x-deepv\n def=text/plain\n der=application/x-x509-ca-cert\n dfont=application/x-font-ttf\n dif=video/x-dv\n dir=application/x-director\n divx=video/divx\n dl=video/dl\n dmg=application/x-apple-diskimage\n doc=application/msword\n dot=application/msword\n dp=application/commonground\n drw=application/drafting\n dump=application/octet-stream\n dv=video/x-dv\n dvi=application/x-dvi\n dwf=drawing/x-dwf=(old)\n dwg=application/acad\n dxf=application/dxf\n dxr=application/x-director\n el=text/x-scriptelisp\n elc=application/x-bytecodeelisp=(compiled=elisp)\n eml=message/rfc822\n env=application/x-envoy\n eot=application/vnd.ms-fontobject\n eps=application/postscript\n es=application/x-esrehber\n etx=text/x-setext\n evy=application/envoy\n exe=application/octet-stream\n f77=text/x-fortran\n f90=text/x-fortran\n f=text/x-fortran\n fdf=application/vndfdf\n fif=application/fractals\n fli=video/fli\n flo=image/florian\n flv=video/x-flv\n flx=text/vndfmiflexstor\n fmf=video/x-atomic3d-feature\n for=text/x-fortran\n fpx=image/vndfpx\n frl=application/freeloader\n funk=audio/make\n g3=image/g3fax\n g=text/plain\n gif=image/gif\n gl=video/gl\n gsd=audio/x-gsm\n gsm=audio/x-gsm\n gsp=application/x-gsp\n gss=application/x-gss\n gtar=application/x-gtar\n gz=application/x-compressed\n gzip=application/x-gzip\n h=text/x-h\n hdf=application/x-hdf\n help=application/x-helpfile\n hgl=application/vndhp-hpgl\n hh=text/x-h\n hlb=text/x-script\n hlp=application/hlp\n hpg=application/vndhp-hpgl\n hpgl=application/vndhp-hpgl\n hqx=application/binhex\n hta=application/hta\n htc=text/x-component\n htm=text/html\n html=text/html\n htmls=text/html\n htt=text/webviewhtml\n htx=text/html\n ice=x-conference/x-cooltalk\n ico=image/x-icon\n ics=text/calendar\n icz=text/calendar\n idc=text/plain\n ief=image/ief\n iefs=image/ief\n iges=application/iges\n igs=application/iges\n ima=application/x-ima\n imap=application/x-httpd-imap\n inf=application/inf\n ins=application/x-internett-signup\n ip=application/x-ip2\n isu=video/x-isvideo\n it=audio/it\n iv=application/x-inventor\n ivr=i-world/i-vrml\n ivy=application/x-livescreen\n jam=audio/x-jam\n jav=text/x-java-source\n java=text/x-java-source\n jcm=application/x-java-commerce\n jfif-tbnl=image/jpeg\n jfif=image/jpeg\n jnlp=application/x-java-jnlp-file\n jpe=image/jpeg\n jpeg=image/jpeg\n jpg=image/jpeg\n jps=image/x-jps\n js=application/javascript\n json=application/json\n jut=image/jutvision\n kar=audio/midi\n karbon=application/vnd.kde.karbon\n kfo=application/vnd.kde.kformula\n flw=application/vnd.kde.kivio\n kml=application/vnd.google-earth.kml+xml\n kmz=application/vnd.google-earth.kmz\n kon=application/vnd.kde.kontour\n kpr=application/vnd.kde.kpresenter\n kpt=application/vnd.kde.kpresenter\n ksp=application/vnd.kde.kspread\n kwd=application/vnd.kde.kword\n kwt=application/vnd.kde.kword\n ksh=text/x-scriptksh\n la=audio/nspaudio\n lam=audio/x-liveaudio\n latex=application/x-latex\n lha=application/lha\n lhx=application/octet-stream\n list=text/plain\n lma=audio/nspaudio\n log=text/plain\n lsp=text/x-scriptlisp\n lst=text/plain\n lsx=text/x-la-asf\n ltx=application/x-latex\n lzh=application/octet-stream\n lzx=application/lzx\n m1v=video/mpeg\n m2a=audio/mpeg\n m2v=video/mpeg\n m3u=audio/x-mpegurl\n m=text/x-m\n man=application/x-troff-man\n manifest=text/cache-manifest\n map=application/x-navimap\n mar=text/plain\n mbd=application/mbedlet\n mc$=application/x-magic-cap-package-10\n mcd=application/mcad\n mcf=text/mcf\n mcp=application/netmc\n me=application/x-troff-me\n mht=message/rfc822\n mhtml=message/rfc822\n mid=application/x-midi\n midi=application/x-midi\n mif=application/x-frame\n mime=message/rfc822\n mjf=audio/x-vndaudioexplosionmjuicemediafile\n mjpg=video/x-motion-jpeg\n mm=application/base64\n mme=application/base64\n mod=audio/mod\n moov=video/quicktime\n mov=video/quicktime\n movie=video/x-sgi-movie\n mp2=audio/mpeg\n mp3=audio/mpeg\n mp4=video/mp4\n mpa=audio/mpeg\n mpc=application/x-project\n mpe=video/mpeg\n mpeg=video/mpeg\n mpg=video/mpeg\n mpga=audio/mpeg\n mpp=application/vndms-project\n mpt=application/x-project\n mpv=application/x-project\n mpx=application/x-project\n mrc=application/marc\n ms=application/x-troff-ms\n mv=video/x-sgi-movie\n my=audio/make\n mzz=application/x-vndaudioexplosionmzz\n nap=image/naplps\n naplps=image/naplps\n nc=application/x-netcdf\n ncm=application/vndnokiaconfiguration-message\n nif=image/x-niff\n niff=image/x-niff\n nix=application/x-mix-transfer\n nsc=application/x-conference\n nvd=application/x-navidoc\n o=application/octet-stream\n oda=application/oda\n odb=application/vnd.oasis.opendocument.database\n odc=application/vnd.oasis.opendocument.chart\n odf=application/vnd.oasis.opendocument.formula\n odg=application/vnd.oasis.opendocument.graphics\n odi=application/vnd.oasis.opendocument.image\n odm=application/vnd.oasis.opendocument.text-master\n odp=application/vnd.oasis.opendocument.presentation\n ods=application/vnd.oasis.opendocument.spreadsheet\n odt=application/vnd.oasis.opendocument.text\n oga=audio/ogg\n ogg=audio/ogg\n ogv=video/ogg\n omc=application/x-omc\n omcd=application/x-omcdatamaker\n omcr=application/x-omcregerator\n otc=application/vnd.oasis.opendocument.chart-template\n otf=application/vnd.oasis.opendocument.formula-template\n otg=application/vnd.oasis.opendocument.graphics-template\n oth=application/vnd.oasis.opendocument.text-web\n oti=application/vnd.oasis.opendocument.image-template\n otm=application/vnd.oasis.opendocument.text-master\n otp=application/vnd.oasis.opendocument.presentation-template\n ots=application/vnd.oasis.opendocument.spreadsheet-template\n ott=application/vnd.oasis.opendocument.text-template\n p10=application/pkcs10\n p12=application/pkcs-12\n p7a=application/x-pkcs7-signature\n p7c=application/pkcs7-mime\n p7m=application/pkcs7-mime\n p7r=application/x-pkcs7-certreqresp\n p7s=application/pkcs7-signature\n p=text/x-pascal\n part=application/pro_eng\n pas=text/pascal\n pbm=image/x-portable-bitmap\n pcl=application/vndhp-pcl\n pct=image/x-pict\n pcx=image/x-pcx\n pdb=chemical/x-pdb\n pdf=application/pdf\n pfunk=audio/make\n pgm=image/x-portable-graymap\n pic=image/pict\n pict=image/pict\n pkg=application/x-newton-compatible-pkg\n pko=application/vndms-pkipko\n pl=text/x-scriptperl\n plx=application/x-pixclscript\n pm4=application/x-pagemaker\n pm5=application/x-pagemaker\n pm=text/x-scriptperl-module\n png=image/png\n pnm=application/x-portable-anymap\n pot=application/mspowerpoint\n pov=model/x-pov\n ppa=application/vndms-powerpoint\n ppm=image/x-portable-pixmap\n pps=application/mspowerpoint\n ppt=application/mspowerpoint\n ppz=application/mspowerpoint\n pre=application/x-freelance\n prt=application/pro_eng\n ps=application/postscript\n psd=application/octet-stream\n pvu=paleovu/x-pv\n pwz=application/vndms-powerpoint\n py=text/x-scriptphyton\n pyc=application/x-bytecodepython\n qcp=audio/vndqcelp\n qd3=x-world/x-3dmf\n qd3d=x-world/x-3dmf\n qif=image/x-quicktime\n qt=video/quicktime\n qtc=video/x-qtc\n qti=image/x-quicktime\n qtif=image/x-quicktime\n ra=audio/x-pn-realaudio\n ram=audio/x-pn-realaudio\n rar=application/x-rar-compressed\n ras=application/x-cmu-raster\n rast=image/cmu-raster\n rdf=application/rdf+xml\n rexx=text/x-scriptrexx\n rf=image/vndrn-realflash\n rgb=image/x-rgb\n rm=application/vndrn-realmedia\n rmi=audio/mid\n rmm=audio/x-pn-realaudio\n rmp=audio/x-pn-realaudio\n rng=application/ringing-tones\n rnx=application/vndrn-realplayer\n roff=application/x-troff\n rp=image/vndrn-realpix\n rpm=audio/x-pn-realaudio-plugin\n rt=text/vndrn-realtext\n rtf=application/rtf\n rtx=application/rtx\n rv=video/vndrn-realvideo\n s=text/x-asm\n s3m=audio/s3m\n s7z=application/x-7z-compressed\n saveme=application/octet-stream\n sbk=application/x-tbook\n scm=text/x-scriptscheme\n sdml=text/plain\n sdp=application/sdp\n sdr=application/sounder\n sea=application/sea\n set=application/set\n sgm=text/x-sgml\n sgml=text/x-sgml\n sh=text/x-scriptsh\n shar=application/x-bsh\n shtml=text/x-server-parsed-html\n sid=audio/x-psid\n skd=application/x-koan\n skm=application/x-koan\n skp=application/x-koan\n skt=application/x-koan\n sit=application/x-stuffit\n sitx=application/x-stuffitx\n sl=application/x-seelogo\n smi=application/smil\n smil=application/smil\n snd=audio/basic\n sol=application/solids\n spc=text/x-speech\n spl=application/futuresplash\n spr=application/x-sprite\n sprite=application/x-sprite\n spx=audio/ogg\n src=application/x-wais-source\n ssi=text/x-server-parsed-html\n ssm=application/streamingmedia\n sst=application/vndms-pkicertstore\n step=application/step\n stl=application/sla\n stp=application/step\n sv4cpio=application/x-sv4cpio\n sv4crc=application/x-sv4crc\n svf=image/vnddwg\n svg=image/svg+xml\n svr=application/x-world\n swf=application/x-shockwave-flash\n t=application/x-troff\n talk=text/x-speech\n tar=application/x-tar\n tbk=application/toolbook\n tcl=text/x-scripttcl\n tcsh=text/x-scripttcsh\n tex=application/x-tex\n texi=application/x-texinfo\n texinfo=application/x-texinfo\n text=text/plain\n tgz=application/gnutar\n tif=image/tiff\n tiff=image/tiff\n tr=application/x-troff\n tsi=audio/tsp-audio\n tsp=application/dsptype\n tsv=text/tab-separated-values\n turbot=image/florian\n tte=application/x-font-ttf\n ttf=application/x-font-ttf\n ttl=text/turtle\n txt=text/plain\n uil=text/x-uil\n uni=text/uri-list\n unis=text/uri-list\n unv=application/i-deas\n uri=text/uri-list\n uris=text/uri-list\n ustar=application/x-ustar\n uu=text/x-uuencode\n uue=text/x-uuencode\n vcd=application/x-cdlink\n vcf=text/x-vcard\n vcard=text/x-vcard\n vcs=text/x-vcalendar\n vda=application/vda\n vdo=video/vdo\n vew=application/groupwise\n viv=video/vivo\n vivo=video/vivo\n vmd=application/vocaltec-media-desc\n vmf=application/vocaltec-media-file\n voc=audio/voc\n vos=video/vosaic\n vox=audio/voxware\n vqe=audio/x-twinvq-plugin\n vqf=audio/x-twinvq\n vql=audio/x-twinvq-plugin\n vrml=application/x-vrml\n vrt=x-world/x-vrt\n vsd=application/x-visio\n vst=application/x-visio\n vsw=application/x-visio\n w60=application/wordperfect60\n w61=application/wordperfect61\n w6w=application/msword\n wav=audio/wav\n wb1=application/x-qpro\n wbmp=image/vnd.wap.wbmp\n web=application/vndxara\n webm=video/webm\n wiz=application/msword\n wk1=application/x-123\n wmf=windows/metafile\n wml=text/vnd.wap.wml\n wmlc=application/vnd.wap.wmlc\n wmls=text/vnd.wap.wmlscript\n wmlsc=application/vnd.wap.wmlscriptc\n woff=application/font-woff\n woff2=application/font-woff2\n word=application/msword\n wp5=application/wordperfect\n wp6=application/wordperfect\n wp=2018-01-31T11:56:47.757011557Z application/wordperfect\n wpd=application/wordperfect\n wq1=application/x-lotus\n wri=application/mswrite\n wrl=application/x-world\n wrz=model/vrml\n wsc=text/scriplet\n wsrc=application/x-wais-source\n wtk=application/x-wintalk\n x-png=image/png\n xbm=image/x-xbitmap\n xdr=video/x-amt-demorun\n xgz=xgl/drawing\n xif=image/vndxiff\n xl=application/excel\n xla=application/excel\n xlb=application/excel\n xlc=application/excel\n xld=application/excel\n xlk=application/excel\n xll=application/excel\n xlm=application/excel\n xls=application/excel\n xlt=application/excel\n xlv=application/excel\n xlw=application/excel\n xm=audio/xm\n xml=application/xml\n xmz=xgl/movie\n xpi=application/x-xpinstall\n xpix=application/x-vndls-xpix\n xpm=image/x-xpixmap\n xsr=video/x-amt-showrun\n xwd=image/x-xwd\n xyz=chemical/x-pdb\n z=application/x-compress\n zip=application/zip\n zoo=application/octet-stream\n zsh=text/x-scriptzsh\n\n # Office 2007 mess - http://wdg.uncc.edu/Microsoft_Office_2007_MIME_Types_for_Apache_and_IIS\n docx=application/vnd.openxmlformats-officedocument.wordprocessingml.document\n docm=application/vnd.ms-word.document.macroEnabled.12\n dotx=application/vnd.openxmlformats-officedocument.wordprocessingml.template\n dotm=application/vnd.ms-word.template.macroEnabled.12\n xlsx=application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\n xlsm=application/vnd.ms-excel.sheet.macroEnabled.12\n xltx=application/vnd.openxmlformats-officedocument.spreadsheetml.template\n xltm=application/vnd.ms-excel.template.macroEnabled.12\n xlsb=application/vnd.ms-excel.sheet.binary.macroEnabled.12\n xlam=application/vnd.ms-excel.addin.macroEnabled.12\n pptx=application/vnd.openxmlformats-officedocument.presentationml.presentation\n pptm=application/vnd.ms-powerpoint.presentation.macroEnabled.12\n ppsx=application/vnd.openxmlformats-officedocument.presentationml.slideshow\n ppsm=application/vnd.ms-powerpoint.slideshow.macroEnabled.12\n potx=application/vnd.openxmlformats-officedocument.presentationml.template\n potm=application/vnd.ms-powerpoint.template.macroEnabled.12\n ppam=application/vnd.ms-powerpoint.addin.macroEnabled.12\n sldx=application/vnd.openxmlformats-officedocument.presentationml.slide\n sldm=application/vnd.ms-powerpoint.slide.macroEnabled.12\n thmx=application/vnd.ms-officetheme\n onetoc=application/onenote\n onetoc2=application/onenote\n onetmp=application/onenote\n onepkg=application/onenote\n # koffice\n\n # iWork\n key=application/x-iwork-keynote-sffkey\n kth=application/x-iwork-keynote-sffkth\n nmbtemplate=application/x-iwork-numbers-sfftemplate\n numbers=application/x-iwork-numbers-sffnumbers\n pages=application/x-iwork-pages-sffpages\n template=application/x-iwork-pages-sfftemplate\n\n # Extensions for Mozilla apps (Firefox and friends)\n xpi=application/x-xpinstall\n "},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.758703487Z {"@timestamp":"2018-01-31T11:56:47.757+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.flash.cookieName":"PLAY_FLASH"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.759560089Z {"@timestamp":"2018-01-31T11:56:47.759+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.flash.httpOnly":"true"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.763411002Z {"@timestamp":"2018-01-31T11:56:47.762+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.flash.jwt.clockSkew":"5 minutes"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.764210750Z {"@timestamp":"2018-01-31T11:56:47.763+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.flash.jwt.dataClaim":"data"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.765104719Z {"@timestamp":"2018-01-31T11:56:47.764+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.flash.jwt.signatureAlgorithm":"HS256"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.765937608Z {"@timestamp":"2018-01-31T11:56:47.765+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.flash.path":"/"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.766631528Z {"@timestamp":"2018-01-31T11:56:47.766+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.flash.sameSite":"lax"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.768376301Z {"@timestamp":"2018-01-31T11:56:47.766+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.flash.secure":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.771051697Z {"@timestamp":"2018-01-31T11:56:47.770+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.forwarded.trustedProxies":"[127.0.0.1, ::1]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.772130903Z {"@timestamp":"2018-01-31T11:56:47.771+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.forwarded.version":"x-forwarded"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.772723439Z {"@timestamp":"2018-01-31T11:56:47.772+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.parser.maxDiskBuffer":"1G"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.773390526Z {"@timestamp":"2018-01-31T11:56:47.772+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.parser.maxMemoryBuffer":"100k"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.775315679Z {"@timestamp":"2018-01-31T11:56:47.774+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.secret.key":"change_me"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.776373927Z {"@timestamp":"2018-01-31T11:56:47.775+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.session.cookieName":"PLAY_SESSION"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.777127411Z {"@timestamp":"2018-01-31T11:56:47.776+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.session.httpOnly":"true"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.777930127Z {"@timestamp":"2018-01-31T11:56:47.777+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.session.jwt.clockSkew":"5 minutes"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.778464900Z {"@timestamp":"2018-01-31T11:56:47.778+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.session.jwt.dataClaim":"data"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.779100567Z {"@timestamp":"2018-01-31T11:56:47.778+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.session.jwt.signatureAlgorithm":"HS256"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.779679968Z {"@timestamp":"2018-01-31T11:56:47.779+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.session.path":"/"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.780362027Z {"@timestamp":"2018-01-31T11:56:47.779+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.session.sameSite":"lax"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.781065371Z {"@timestamp":"2018-01-31T11:56:47.780+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.http.session.secure":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.781685820Z {"@timestamp":"2018-01-31T11:56:47.781+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.i18n.langCookieHttpOnly":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.782337323Z {"@timestamp":"2018-01-31T11:56:47.781+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.i18n.langCookieName":"PLAY_LANG"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.783061360Z {"@timestamp":"2018-01-31T11:56:47.782+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.i18n.langCookieSecure":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.783544684Z {"@timestamp":"2018-01-31T11:56:47.783+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.i18n.langs":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.784208253Z {"@timestamp":"2018-01-31T11:56:47.783+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.logger.includeConfigProperties":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.784890601Z {"@timestamp":"2018-01-31T11:56:47.784+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.modules.disabled":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.785522867Z {"@timestamp":"2018-01-31T11:56:47.785+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.modules.enabled":"[play.api.inject.BuiltinModule, play.api.i18n.I18nModule, play.api.mvc.CookiesModule, controllers.AssetsModule, play.filters.csrf.CSRFModule, play.filters.cors.CORSModule, play.filters.headers.SecurityHeadersModule, play.filters.hosts.AllowedHostsModule, play.filters.gzip.GzipFilterModule, play.filters.https.RedirectHttpsModule, play.api.libs.ws.ahc.AhcWSModule, play.libs.ws.ahc.AhcWSModule, com.bamtech.cde.ripcut.core.CoreModule]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.786248175Z {"@timestamp":"2018-01-31T11:56:47.785+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.akka.bindTimeout":"5 seconds"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.786885357Z {"@timestamp":"2018-01-31T11:56:47.786+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.akka.default-host-header":""},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.787594418Z {"@timestamp":"2018-01-31T11:56:47.787+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.akka.illegal-response-header-value-processing-mode":"warn"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.788374230Z {"@timestamp":"2018-01-31T11:56:47.787+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.akka.max-content-length":"infinite"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.789014887Z {"@timestamp":"2018-01-31T11:56:47.788+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.akka.server-header":""},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.789651996Z {"@timestamp":"2018-01-31T11:56:47.789+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.akka.transparent-head-requests":"off"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.790357100Z {"@timestamp":"2018-01-31T11:56:47.789+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.dir":"/opt/docker"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.791027161Z {"@timestamp":"2018-01-31T11:56:47.790+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.http.address":"0.0.0.0"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.791548066Z {"@timestamp":"2018-01-31T11:56:47.791+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.http.idleTimeout":"75 seconds"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.792089946Z {"@timestamp":"2018-01-31T11:56:47.791+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.http.port":"9000"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.792759073Z {"@timestamp":"2018-01-31T11:56:47.792+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.https.address":"0.0.0.0"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.793487045Z {"@timestamp":"2018-01-31T11:56:47.793+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.https.engineProvider":"play.core.server.ssl.DefaultSSLEngineProvider"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.794187872Z {"@timestamp":"2018-01-31T11:56:47.793+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.https.idleTimeout":"75 seconds"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.794847954Z {"@timestamp":"2018-01-31T11:56:47.794+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.https.keyStore.password":""},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.795595409Z {"@timestamp":"2018-01-31T11:56:47.794+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.https.keyStore.type":"JKS"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.796210940Z {"@timestamp":"2018-01-31T11:56:47.795+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.https.needClientAuth":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.796724655Z {"@timestamp":"2018-01-31T11:56:47.796+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.https.trustStore.noCaVerification":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.797441759Z {"@timestamp":"2018-01-31T11:56:47.796+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.https.wantClientAuth":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.797956843Z {"@timestamp":"2018-01-31T11:56:47.797+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.pidfile.path":"/opt/docker/RUNNING_PID"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.798707489Z {"@timestamp":"2018-01-31T11:56:47.798+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.provider":"play.core.server.AkkaHttpServerProvider"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.799196242Z {"@timestamp":"2018-01-31T11:56:47.798+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.server.websocket.frame.maxLength":"64k"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.799678329Z {"@timestamp":"2018-01-31T11:56:47.799+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.temporaryFile.reaper.enabled":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.800246082Z {"@timestamp":"2018-01-31T11:56:47.799+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.temporaryFile.reaper.initialDelay":"5 minutes"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.801073110Z {"@timestamp":"2018-01-31T11:56:47.800+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.temporaryFile.reaper.interval":"5 minutes"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.801762189Z {"@timestamp":"2018-01-31T11:56:47.801+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.temporaryFile.reaper.olderThan":"5 minutes"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.802477414Z {"@timestamp":"2018-01-31T11:56:47.801+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ahc.disableUrlEncoding":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.803179158Z {"@timestamp":"2018-01-31T11:56:47.802+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ahc.idleConnectionInPoolTimeout":"1 minute"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.803763055Z {"@timestamp":"2018-01-31T11:56:47.803+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ahc.keepAlive":"true"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.804391070Z {"@timestamp":"2018-01-31T11:56:47.803+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ahc.maxConnectionsPerHost":"-1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.805116140Z {"@timestamp":"2018-01-31T11:56:47.804+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ahc.maxConnectionsTotal":"-1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.805925333Z {"@timestamp":"2018-01-31T11:56:47.805+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ahc.maxNumberOfRedirects":"5"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.806773761Z {"@timestamp":"2018-01-31T11:56:47.806+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ahc.maxRequestRetry":"5"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.807512370Z {"@timestamp":"2018-01-31T11:56:47.806+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.cache.cachingProviderName":""},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.808058611Z {"@timestamp":"2018-01-31T11:56:47.807+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.cache.enabled":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.808473730Z {"@timestamp":"2018-01-31T11:56:47.808+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.cache.heuristics.enabled":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.808990007Z {"@timestamp":"2018-01-31T11:56:47.808+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.cache.name":"play-ws-cache"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.809505068Z {"@timestamp":"2018-01-31T11:56:47.809+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.compressionEnabled":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.810023186Z {"@timestamp":"2018-01-31T11:56:47.809+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.followRedirects":"true"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.810567090Z {"@timestamp":"2018-01-31T11:56:47.810+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.all":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.811155111Z {"@timestamp":"2018-01-31T11:56:47.810+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.certpath":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.811626382Z {"@timestamp":"2018-01-31T11:56:47.811+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.data":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.812075290Z {"@timestamp":"2018-01-31T11:56:47.811+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.defaultctx":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.812678301Z {"@timestamp":"2018-01-31T11:56:47.812+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.handshake":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.813196990Z {"@timestamp":"2018-01-31T11:56:47.812+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.keygen":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.813741212Z {"@timestamp":"2018-01-31T11:56:47.813+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.keymanager":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.814205135Z {"@timestamp":"2018-01-31T11:56:47.813+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.ocsp":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.814823438Z {"@timestamp":"2018-01-31T11:56:47.814+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.packet":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.815395191Z {"@timestamp":"2018-01-31T11:56:47.814+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.plaintext":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.815922669Z {"@timestamp":"2018-01-31T11:56:47.815+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.pluggability":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.816383426Z {"@timestamp":"2018-01-31T11:56:47.815+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.record":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.816925084Z {"@timestamp":"2018-01-31T11:56:47.816+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.session":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.817455233Z {"@timestamp":"2018-01-31T11:56:47.816+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.sessioncache":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.817905533Z {"@timestamp":"2018-01-31T11:56:47.817+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.ssl":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.818369163Z {"@timestamp":"2018-01-31T11:56:47.818+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.sslctx":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.818818181Z {"@timestamp":"2018-01-31T11:56:47.818+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.trustmanager":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.819236811Z {"@timestamp":"2018-01-31T11:56:47.818+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.debug.verbose":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.819641056Z {"@timestamp":"2018-01-31T11:56:47.819+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.default":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.820067277Z {"@timestamp":"2018-01-31T11:56:47.819+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.disabledKeyAlgorithms":"[RSA keySize < 2048, DSA keySize < 2048, EC keySize < 224]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.820487355Z {"@timestamp":"2018-01-31T11:56:47.820+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.disabledSignatureAlgorithms":"[MD2, MD4, MD5]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.820961048Z {"@timestamp":"2018-01-31T11:56:47.820+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.enabledCipherSuites":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.821399573Z {"@timestamp":"2018-01-31T11:56:47.821+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.enabledProtocols":"[TLSv1.2, TLSv1.1, TLSv1]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.821935867Z {"@timestamp":"2018-01-31T11:56:47.821+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.keyManager.stores":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.822392106Z {"@timestamp":"2018-01-31T11:56:47.822+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.loose.acceptAnyCertificate":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.822913037Z {"@timestamp":"2018-01-31T11:56:47.822+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.loose.allowWeakCiphers":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.823395023Z {"@timestamp":"2018-01-31T11:56:47.823+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.loose.allowWeakProtocols":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.823843943Z {"@timestamp":"2018-01-31T11:56:47.823+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.loose.disableHostnameVerification":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.824327856Z {"@timestamp":"2018-01-31T11:56:47.824+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.loose.disableSNI":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.824837208Z {"@timestamp":"2018-01-31T11:56:47.824+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.protocol":"TLSv1.2"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.825404437Z {"@timestamp":"2018-01-31T11:56:47.825+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.revocationLists":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.825917390Z {"@timestamp":"2018-01-31T11:56:47.825+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.sslParameters.clientAuth":"default"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.826471704Z {"@timestamp":"2018-01-31T11:56:47.826+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.sslParameters.protocols":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.826909571Z {"@timestamp":"2018-01-31T11:56:47.826+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.ssl.trustManager.stores":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.827322511Z {"@timestamp":"2018-01-31T11:56:47.826+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.timeout.connection":"30 seconds"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.827710071Z {"@timestamp":"2018-01-31T11:56:47.827+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.timeout.idle":"30 seconds"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.828288717Z {"@timestamp":"2018-01-31T11:56:47.827+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.timeout.request":"30 seconds"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.828745128Z {"@timestamp":"2018-01-31T11:56:47.828+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"play.ws.useProxyProperties":"true"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.829190933Z {"@timestamp":"2018-01-31T11:56:47.828+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"promise.akka.actor.typed.timeout":"5s"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.829649762Z {"@timestamp":"2018-01-31T11:56:47.829+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"services.app.host":"0.0.0.0"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.830082585Z {"@timestamp":"2018-01-31T11:56:47.829+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"services.app.port":"9000"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.830467196Z {"@timestamp":"2018-01-31T11:56:47.830+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"services.app.scheme":"http"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.830899364Z {"@timestamp":"2018-01-31T11:56:47.830+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"services.ingestion.dimensions.max-height":"10000"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.831353447Z {"@timestamp":"2018-01-31T11:56:47.830+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"services.ingestion.dimensions.max-width":"10000"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.831777253Z {"@timestamp":"2018-01-31T11:56:47.831+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"services.ingestion.dimensions.min-height":"1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.832221576Z {"@timestamp":"2018-01-31T11:56:47.831+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"services.ingestion.dimensions.min-width":"1"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.832700535Z {"@timestamp":"2018-01-31T11:56:47.832+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"services.variant.caching.max-age.fallback":"10 seconds"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.833202172Z {"@timestamp":"2018-01-31T11:56:47.832+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"services.variant.caching.max-age.success":"1 hour"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.833669220Z {"@timestamp":"2018-01-31T11:56:47.833+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"services.variant.dimensions.max-height":"1080"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.834123400Z {"@timestamp":"2018-01-31T11:56:47.833+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"services.variant.dimensions.max-width":"1920"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.834561414Z {"@timestamp":"2018-01-31T11:56:47.834+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"services.variant.dimensions.min-height":"3"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.835112086Z {"@timestamp":"2018-01-31T11:56:47.834+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"services.variant.dimensions.min-width":"3"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.835576711Z {"@timestamp":"2018-01-31T11:56:47.835+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"services.variant.worker.host":"variant"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.836058239Z {"@timestamp":"2018-01-31T11:56:47.835+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"services.variant.worker.port":"9002"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.836473372Z {"@timestamp":"2018-01-31T11:56:47.836+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"services.variant.worker.timeout":"300 ms"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.836997309Z {"@timestamp":"2018-01-31T11:56:47.836+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.all":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.837489316Z {"@timestamp":"2018-01-31T11:56:47.837+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.certpath":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.838001959Z {"@timestamp":"2018-01-31T11:56:47.837+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.data":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.838480200Z {"@timestamp":"2018-01-31T11:56:47.838+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.defaultctx":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.839003381Z {"@timestamp":"2018-01-31T11:56:47.838+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.handshake":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.839550038Z {"@timestamp":"2018-01-31T11:56:47.839+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.keygen":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.840010338Z {"@timestamp":"2018-01-31T11:56:47.839+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.keymanager":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.840490371Z {"@timestamp":"2018-01-31T11:56:47.840+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.ocsp":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.841081446Z {"@timestamp":"2018-01-31T11:56:47.840+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.packet":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.841538330Z {"@timestamp":"2018-01-31T11:56:47.841+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.plaintext":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.841984445Z {"@timestamp":"2018-01-31T11:56:47.841+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.pluggability":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.842436267Z {"@timestamp":"2018-01-31T11:56:47.842+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.record":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.842935869Z {"@timestamp":"2018-01-31T11:56:47.842+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.session":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.843630792Z {"@timestamp":"2018-01-31T11:56:47.843+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.sessioncache":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.844117424Z {"@timestamp":"2018-01-31T11:56:47.843+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.ssl":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.844604420Z {"@timestamp":"2018-01-31T11:56:47.844+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.sslctx":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.845131467Z {"@timestamp":"2018-01-31T11:56:47.844+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.trustmanager":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.845590494Z {"@timestamp":"2018-01-31T11:56:47.845+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.debug.verbose":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.845991642Z {"@timestamp":"2018-01-31T11:56:47.845+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.default":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.846471883Z {"@timestamp":"2018-01-31T11:56:47.846+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.disabledKeyAlgorithms":"[RSA keySize < 2048, DSA keySize < 2048, EC keySize < 224]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.846970682Z {"@timestamp":"2018-01-31T11:56:47.846+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.disabledSignatureAlgorithms":"[MD2, MD4, MD5]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.847456389Z {"@timestamp":"2018-01-31T11:56:47.847+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.enabledCipherSuites":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.847926742Z {"@timestamp":"2018-01-31T11:56:47.847+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.enabledProtocols":"[TLSv1.2, TLSv1.1, TLSv1]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.848327898Z {"@timestamp":"2018-01-31T11:56:47.847+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.keyManager.stores":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.848793058Z {"@timestamp":"2018-01-31T11:56:47.848+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.logger":"com.typesafe.sslconfig.util.NoopLogger"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.849297855Z {"@timestamp":"2018-01-31T11:56:47.848+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.loose.acceptAnyCertificate":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.849755217Z {"@timestamp":"2018-01-31T11:56:47.849+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.loose.allowWeakCiphers":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.850258229Z {"@timestamp":"2018-01-31T11:56:47.849+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.loose.allowWeakProtocols":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.850694751Z {"@timestamp":"2018-01-31T11:56:47.850+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.loose.disableHostnameVerification":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.851176709Z {"@timestamp":"2018-01-31T11:56:47.850+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.loose.disableSNI":"false"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.851582639Z {"@timestamp":"2018-01-31T11:56:47.851+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.protocol":"TLSv1.2"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.851989984Z {"@timestamp":"2018-01-31T11:56:47.851+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.revocationLists":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.852421317Z {"@timestamp":"2018-01-31T11:56:47.852+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.sslParameters.clientAuth":"default"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.852886566Z {"@timestamp":"2018-01-31T11:56:47.852+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.sslParameters.protocols":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.853283776Z {"@timestamp":"2018-01-31T11:56:47.852+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"ssl-config.trustManager.stores":"[]"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.853690752Z {"@timestamp":"2018-01-31T11:56:47.853+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.arch.data.model":"64"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.854097684Z {"@timestamp":"2018-01-31T11:56:47.853+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.boot.class.path":"/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/resources.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/rt.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jsse.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jce.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/charsets.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jfr.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/classes"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.854501451Z {"@timestamp":"2018-01-31T11:56:47.854+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.boot.library.path":"/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.855051603Z {"@timestamp":"2018-01-31T11:56:47.854+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.cpu.endian":"little"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.855506019Z {"@timestamp":"2018-01-31T11:56:47.855+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.cpu.isalist":""},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.855993561Z {"@timestamp":"2018-01-31T11:56:47.855+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.io.unicode.encoding":"UnicodeLittle"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.856385834Z {"@timestamp":"2018-01-31T11:56:47.856+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.java.command":"play.core.server.ProdServerStart"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.856843759Z {"@timestamp":"2018-01-31T11:56:47.856+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.java.launcher":"SUN_STANDARD"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.857336113Z {"@timestamp":"2018-01-31T11:56:47.856+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.jnu.encoding":"UTF-8"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.857906915Z {"@timestamp":"2018-01-31T11:56:47.857+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.management.compiler":"HotSpot 64-Bit Tiered Compilers"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.858343379Z {"@timestamp":"2018-01-31T11:56:47.857+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"sun.os.patch.level":"unknown"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.858778262Z {"@timestamp":"2018-01-31T11:56:47.858+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"user.dir":"/opt/docker"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.859218591Z {"@timestamp":"2018-01-31T11:56:47.858+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"user.home":"/usr/sbin"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.859635430Z {"@timestamp":"2018-01-31T11:56:47.859+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"user.language":"en"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.860091096Z {"@timestamp":"2018-01-31T11:56:47.859+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"user.name":"daemon"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.860535458Z {"@timestamp":"2018-01-31T11:56:47.860+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.StartUpLogging$$anonfun$com$bamtech$cde$ripcut$core$StartUpLogging$$logConfigurationData$2.apply(StartUpLogging.scala:87)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"user.timezone":"Etc/UTC"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:47.862284543Z {"@timestamp":"2018-01-31T11:56:47.861+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"3l3XNRQQHV7czIVt09k9hKQV","operations":[{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"StartUpLoggingContext","id":"X9JKCW47vt4-SjBabY0R0NGP","details":{}}},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T11:56:48.264846545Z {"@timestamp":"2018-01-31T11:56:48.264+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withContext(StructuredLogging.scala:59)\n","message":{"instanceId":"13XjLVTmR81LWk0ecfH4EiRK","operations":[],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"EXIT"},"contextId":"ibrsHFOEB0eEqox7IVqSrfUC"}}
+frontend_1 | 2018-01-31T12:00:53.079755672Z {"@timestamp":"2018-01-31T12:00:53.078+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"8ac5EPeqRx1Wq1aDk2aAb5Eo","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"f4yAZYMh0cfdL3oWF1tx7WhQ"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"8ac5EPeqRx1Wq1aDk2aAb5Eo","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"f4yAZYMh0cfdL3oWF1tx7WhQ"}}},"contextId":"_0HiuIZ2yTG7x2QQsIrrtkfe"}}
+frontend_1 | 2018-01-31T12:00:53.080430881Z {"@timestamp":"2018-01-31T12:00:53.079+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"4c5lBM6NQYpjLoXXvQLF4i5m","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"-LwZYwKXKCEDs16x-MALNf-9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"4c5lBM6NQYpjLoXXvQLF4i5m","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"-LwZYwKXKCEDs16x-MALNf-9"}}},"contextId":"TQzo3xIfTd7M4Yvf02CqcWhM"}}
+frontend_1 | 2018-01-31T12:00:53.081033049Z {"@timestamp":"2018-01-31T12:00:53.079+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"lQFUGvjw5BwxnTXfRZvXqkb-","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"3BP8ZxLDcVtZvoe2IgUd_Xwv"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"lQFUGvjw5BwxnTXfRZvXqkb-","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"3BP8ZxLDcVtZvoe2IgUd_Xwv"}}},"contextId":"S7UoXf_B3nw5Z_ZYi8vADHsg"}}
+frontend_1 | 2018-01-31T12:00:53.081316957Z {"@timestamp":"2018-01-31T12:00:53.079+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"6ZEXzKbtkuUky9EPJpBapfHG","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"VrveCP6qhUPwm65ATHUVHMvT"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"6ZEXzKbtkuUky9EPJpBapfHG","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"VrveCP6qhUPwm65ATHUVHMvT"}}},"contextId":"2CsEq74C9WPPKcs3WKbKlCch"}}
+frontend_1 | 2018-01-31T12:00:53.084342763Z {"@timestamp":"2018-01-31T12:00:53.083+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"lxDX_5iQtS0HFNuRdfX0YDzN","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"lxDX_5iQtS0HFNuRdfX0YDzN","details":{"partnerId":"test-partner-id"}}},"contextId":"_0HiuIZ2yTG7x2QQsIrrtkfe"}}
+frontend_1 | 2018-01-31T12:00:53.084379567Z {"@timestamp":"2018-01-31T12:00:53.083+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"FqRp6GXP3SNju7AaAmqMNM2L","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"FqRp6GXP3SNju7AaAmqMNM2L","details":{"partnerId":"test-partner-id"}}},"contextId":"TQzo3xIfTd7M4Yvf02CqcWhM"}}
+frontend_1 | 2018-01-31T12:00:53.085140797Z {"@timestamp":"2018-01-31T12:00:53.078+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"LIDHJfFlOLx5kH-hedZ8ba4H","details":{"endpoint":"GET /health","transactionId":"ivp-I6WDUXdEUYTVgkTl3NdI"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"LIDHJfFlOLx5kH-hedZ8ba4H","details":{"endpoint":"GET /health","transactionId":"ivp-I6WDUXdEUYTVgkTl3NdI"}}},"contextId":"PI7s0Foon5_wbrlfQrMoRUo7"}}
+frontend_1 | 2018-01-31T12:00:53.085189173Z {"@timestamp":"2018-01-31T12:00:53.078+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"yqVk-9UDGGeEbJ2zK63qcbCi","details":{"endpoint":"GET /health","transactionId":"AcF5nEH2_0EYFdILmoxydAxv"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"yqVk-9UDGGeEbJ2zK63qcbCi","details":{"endpoint":"GET /health","transactionId":"AcF5nEH2_0EYFdILmoxydAxv"}}},"contextId":"qPa8c9EwI0JeTU4o2ig0Jilb"}}
+frontend_1 | 2018-01-31T12:00:53.086153676Z {"@timestamp":"2018-01-31T12:00:53.085+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"n5j_Z_OxSa32ohG3vcupitjj","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"n5j_Z_OxSa32ohG3vcupitjj","details":{"partnerId":"test-partner-id"}}},"contextId":"S7UoXf_B3nw5Z_ZYi8vADHsg"}}
+frontend_1 | 2018-01-31T12:00:53.088267700Z {"@timestamp":"2018-01-31T12:00:53.086+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"yckGQDcy2rzGOx8EOXvBiiUs","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"yckGQDcy2rzGOx8EOXvBiiUs","details":{"partnerId":"test-partner-id"}}},"contextId":"2CsEq74C9WPPKcs3WKbKlCch"}}
+frontend_1 | 2018-01-31T12:00:53.093595127Z {"@timestamp":"2018-01-31T12:00:53.093+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"LIDHJfFlOLx5kH-hedZ8ba4H","details":{"endpoint":"GET /health","transactionId":"ivp-I6WDUXdEUYTVgkTl3NdI"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"LIDHJfFlOLx5kH-hedZ8ba4H","details":{"endpoint":"GET /health","transactionId":"ivp-I6WDUXdEUYTVgkTl3NdI"}}},"contextId":"PI7s0Foon5_wbrlfQrMoRUo7"}}
+frontend_1 | 2018-01-31T12:00:53.093645048Z {"@timestamp":"2018-01-31T12:00:53.093+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"yqVk-9UDGGeEbJ2zK63qcbCi","details":{"endpoint":"GET /health","transactionId":"AcF5nEH2_0EYFdILmoxydAxv"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"yqVk-9UDGGeEbJ2zK63qcbCi","details":{"endpoint":"GET /health","transactionId":"AcF5nEH2_0EYFdILmoxydAxv"}}},"contextId":"qPa8c9EwI0JeTU4o2ig0Jilb"}}
+frontend_1 | 2018-01-31T12:00:53.094097544Z {"@timestamp":"2018-01-31T12:00:53.093+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"lxDX_5iQtS0HFNuRdfX0YDzN","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"lxDX_5iQtS0HFNuRdfX0YDzN","details":{"partnerId":"test-partner-id"}}},"contextId":"_0HiuIZ2yTG7x2QQsIrrtkfe"}}
+frontend_1 | 2018-01-31T12:00:53.094402949Z {"@timestamp":"2018-01-31T12:00:53.093+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"yckGQDcy2rzGOx8EOXvBiiUs","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"yckGQDcy2rzGOx8EOXvBiiUs","details":{"partnerId":"test-partner-id"}}},"contextId":"2CsEq74C9WPPKcs3WKbKlCch"}}
+frontend_1 | 2018-01-31T12:00:53.094424703Z {"@timestamp":"2018-01-31T12:00:53.094+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"8ac5EPeqRx1Wq1aDk2aAb5Eo","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"f4yAZYMh0cfdL3oWF1tx7WhQ"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"8ac5EPeqRx1Wq1aDk2aAb5Eo","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"f4yAZYMh0cfdL3oWF1tx7WhQ"}}},"contextId":"_0HiuIZ2yTG7x2QQsIrrtkfe"}}
+frontend_1 | 2018-01-31T12:00:53.094535603Z {"@timestamp":"2018-01-31T12:00:53.093+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"n5j_Z_OxSa32ohG3vcupitjj","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"n5j_Z_OxSa32ohG3vcupitjj","details":{"partnerId":"test-partner-id"}}},"contextId":"S7UoXf_B3nw5Z_ZYi8vADHsg"}}
+frontend_1 | 2018-01-31T12:00:53.095219248Z {"@timestamp":"2018-01-31T12:00:53.094+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"6ZEXzKbtkuUky9EPJpBapfHG","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"VrveCP6qhUPwm65ATHUVHMvT"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"6ZEXzKbtkuUky9EPJpBapfHG","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"VrveCP6qhUPwm65ATHUVHMvT"}}},"contextId":"2CsEq74C9WPPKcs3WKbKlCch"}}
+frontend_1 | 2018-01-31T12:00:53.095272598Z {"@timestamp":"2018-01-31T12:00:53.094+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"lQFUGvjw5BwxnTXfRZvXqkb-","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"3BP8ZxLDcVtZvoe2IgUd_Xwv"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"lQFUGvjw5BwxnTXfRZvXqkb-","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"3BP8ZxLDcVtZvoe2IgUd_Xwv"}}},"contextId":"S7UoXf_B3nw5Z_ZYi8vADHsg"}}
+frontend_1 | 2018-01-31T12:00:53.095833204Z {"@timestamp":"2018-01-31T12:00:53.095+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"FqRp6GXP3SNju7AaAmqMNM2L","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"FqRp6GXP3SNju7AaAmqMNM2L","details":{"partnerId":"test-partner-id"}}},"contextId":"TQzo3xIfTd7M4Yvf02CqcWhM"}}
+frontend_1 | 2018-01-31T12:00:53.097091547Z {"@timestamp":"2018-01-31T12:00:53.096+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"4c5lBM6NQYpjLoXXvQLF4i5m","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"-LwZYwKXKCEDs16x-MALNf-9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"4c5lBM6NQYpjLoXXvQLF4i5m","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"-LwZYwKXKCEDs16x-MALNf-9"}}},"contextId":"TQzo3xIfTd7M4Yvf02CqcWhM"}}
+frontend_1 | 2018-01-31T12:00:53.239394841Z {"@timestamp":"2018-01-31T12:00:53.238+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"iL9mtpq5i8CUf-rnczFagY12","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/201/504875479_4fd1bb1497_o.jpg"}}},{"name":"IngestionRouting","id":"n5j_Z_OxSa32ohG3vcupitjj","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"iL9mtpq5i8CUf-rnczFagY12","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/201/504875479_4fd1bb1497_o.jpg"}}}},"contextId":"S7UoXf_B3nw5Z_ZYi8vADHsg"}}
+frontend_1 | 2018-01-31T12:00:53.248654876Z {"@timestamp":"2018-01-31T12:00:53.247+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"G7xYVxhNUY5qrWmrb-3P4OlQ","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/5556/14727637427_15805e79bb_o.jpg"}}},{"name":"IngestionRouting","id":"yckGQDcy2rzGOx8EOXvBiiUs","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"G7xYVxhNUY5qrWmrb-3P4OlQ","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/5556/14727637427_15805e79bb_o.jpg"}}}},"contextId":"2CsEq74C9WPPKcs3WKbKlCch"}}
+frontend_1 | 2018-01-31T12:00:53.272274534Z {"@timestamp":"2018-01-31T12:00:53.271+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"iL9mtpq5i8CUf-rnczFagY12","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/201/504875479_4fd1bb1497_o.jpg"}}},{"name":"IngestionRouting","id":"n5j_Z_OxSa32ohG3vcupitjj","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"iL9mtpq5i8CUf-rnczFagY12","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/201/504875479_4fd1bb1497_o.jpg"}}}},"contextId":"S7UoXf_B3nw5Z_ZYi8vADHsg"}}
+frontend_1 | 2018-01-31T12:00:53.274784029Z {"@timestamp":"2018-01-31T12:00:53.274+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"G7xYVxhNUY5qrWmrb-3P4OlQ","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/5556/14727637427_15805e79bb_o.jpg"}}},{"name":"IngestionRouting","id":"yckGQDcy2rzGOx8EOXvBiiUs","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"G7xYVxhNUY5qrWmrb-3P4OlQ","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/5556/14727637427_15805e79bb_o.jpg"}}}},"contextId":"2CsEq74C9WPPKcs3WKbKlCch"}}
+frontend_1 | 2018-01-31T12:00:53.287734597Z {"@timestamp":"2018-01-31T12:00:53.287+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"6rE1S9qlfOWlD42hjKHc3YLd","details":{"message":{"partnerId":"test-partner-id","masterId":"201B25C802D41457C477C25AF1E25EA1EF2B583DA6A1D261750FDBF5696DC631","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/201/504875479_4fd1bb1497_o.jpg"}}},{"name":"IngestionRouting","id":"n5j_Z_OxSa32ohG3vcupitjj","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"6rE1S9qlfOWlD42hjKHc3YLd","details":{"message":{"partnerId":"test-partner-id","masterId":"201B25C802D41457C477C25AF1E25EA1EF2B583DA6A1D261750FDBF5696DC631","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/201/504875479_4fd1bb1497_o.jpg"}}}},"contextId":"S7UoXf_B3nw5Z_ZYi8vADHsg"}}
+frontend_1 | 2018-01-31T12:00:53.287923822Z {"@timestamp":"2018-01-31T12:00:53.287+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"6DpJ09taxl9nyZPtntiFf4NE","details":{"message":{"partnerId":"test-partner-id","masterId":"D2E319E5B06EACD09C7158D781516292126C6136AFFC977F06A8BD0D58053E84","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/5556/14727637427_15805e79bb_o.jpg"}}},{"name":"IngestionRouting","id":"yckGQDcy2rzGOx8EOXvBiiUs","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"6DpJ09taxl9nyZPtntiFf4NE","details":{"message":{"partnerId":"test-partner-id","masterId":"D2E319E5B06EACD09C7158D781516292126C6136AFFC977F06A8BD0D58053E84","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/5556/14727637427_15805e79bb_o.jpg"}}}},"contextId":"2CsEq74C9WPPKcs3WKbKlCch"}}
+frontend_1 | 2018-01-31T12:00:53.311537679Z {"@timestamp":"2018-01-31T12:00:53.310+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"6rE1S9qlfOWlD42hjKHc3YLd","details":{"message":{"partnerId":"test-partner-id","masterId":"201B25C802D41457C477C25AF1E25EA1EF2B583DA6A1D261750FDBF5696DC631","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/201/504875479_4fd1bb1497_o.jpg"}}},{"name":"IngestionRouting","id":"n5j_Z_OxSa32ohG3vcupitjj","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"6rE1S9qlfOWlD42hjKHc3YLd","details":{"message":{"partnerId":"test-partner-id","masterId":"201B25C802D41457C477C25AF1E25EA1EF2B583DA6A1D261750FDBF5696DC631","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/201/504875479_4fd1bb1497_o.jpg"}}}},"contextId":"S7UoXf_B3nw5Z_ZYi8vADHsg"}}
+frontend_1 | 2018-01-31T12:00:53.338460505Z {"@timestamp":"2018-01-31T12:00:53.337+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"6DpJ09taxl9nyZPtntiFf4NE","details":{"message":{"partnerId":"test-partner-id","masterId":"D2E319E5B06EACD09C7158D781516292126C6136AFFC977F06A8BD0D58053E84","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/5556/14727637427_15805e79bb_o.jpg"}}},{"name":"IngestionRouting","id":"yckGQDcy2rzGOx8EOXvBiiUs","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"6DpJ09taxl9nyZPtntiFf4NE","details":{"message":{"partnerId":"test-partner-id","masterId":"D2E319E5B06EACD09C7158D781516292126C6136AFFC977F06A8BD0D58053E84","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/5556/14727637427_15805e79bb_o.jpg"}}}},"contextId":"2CsEq74C9WPPKcs3WKbKlCch"}}
+frontend_1 | 2018-01-31T12:00:53.463194538Z {"@timestamp":"2018-01-31T12:00:53.462+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"XQY7pZFww_uPp81bf3z2EwM2","details":{"endpoint":"GET /health","transactionId":"Mr4a48Z7828LqJeBT7yIW3bh"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"XQY7pZFww_uPp81bf3z2EwM2","details":{"endpoint":"GET /health","transactionId":"Mr4a48Z7828LqJeBT7yIW3bh"}}},"contextId":"J3tWAbnJJH1jEUHoAiwg-4Pc"}}
+frontend_1 | 2018-01-31T12:00:53.463693447Z {"@timestamp":"2018-01-31T12:00:53.463+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"XQY7pZFww_uPp81bf3z2EwM2","details":{"endpoint":"GET /health","transactionId":"Mr4a48Z7828LqJeBT7yIW3bh"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"XQY7pZFww_uPp81bf3z2EwM2","details":{"endpoint":"GET /health","transactionId":"Mr4a48Z7828LqJeBT7yIW3bh"}}},"contextId":"J3tWAbnJJH1jEUHoAiwg-4Pc"}}
+frontend_1 | 2018-01-31T12:00:53.525722334Z {"@timestamp":"2018-01-31T12:00:53.524+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"eFmyCnYZBoMn9DuYEpyvJwUZ","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"DC8XPtBVhRsk-Yjxvw5HBXCy"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"eFmyCnYZBoMn9DuYEpyvJwUZ","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"DC8XPtBVhRsk-Yjxvw5HBXCy"}}},"contextId":"olmAB7WEM1f6nhXqeMC-igom"}}
+frontend_1 | 2018-01-31T12:00:53.527048320Z {"@timestamp":"2018-01-31T12:00:53.526+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"m41Wrzxc2hcNacnRkYR3buNt","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"m41Wrzxc2hcNacnRkYR3buNt","details":{"partnerId":"test-partner-id"}}},"contextId":"olmAB7WEM1f6nhXqeMC-igom"}}
+frontend_1 | 2018-01-31T12:00:53.527913859Z {"@timestamp":"2018-01-31T12:00:53.527+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"m41Wrzxc2hcNacnRkYR3buNt","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"m41Wrzxc2hcNacnRkYR3buNt","details":{"partnerId":"test-partner-id"}}},"contextId":"olmAB7WEM1f6nhXqeMC-igom"}}
+frontend_1 | 2018-01-31T12:00:53.529758491Z {"@timestamp":"2018-01-31T12:00:53.529+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"j141aCwPGa4dKXb6Jg81xiaD","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"vyK0b5VVC7mgTLnNrZc_r9vL"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"j141aCwPGa4dKXb6Jg81xiaD","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"vyK0b5VVC7mgTLnNrZc_r9vL"}}},"contextId":"7afkPRUGbhumuQONaV2fYWsi"}}
+frontend_1 | 2018-01-31T12:00:53.553300570Z {"@timestamp":"2018-01-31T12:00:53.527+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"eFmyCnYZBoMn9DuYEpyvJwUZ","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"DC8XPtBVhRsk-Yjxvw5HBXCy"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"eFmyCnYZBoMn9DuYEpyvJwUZ","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"DC8XPtBVhRsk-Yjxvw5HBXCy"}}},"contextId":"olmAB7WEM1f6nhXqeMC-igom"}}
+frontend_1 | 2018-01-31T12:00:53.576656757Z {"@timestamp":"2018-01-31T12:00:53.576+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"yimtQFLowqMCJ-tGjhRQaFcS","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/5228/5601875420_b2f1caea1a_o.jpg"}}},{"name":"IngestionRouting","id":"m41Wrzxc2hcNacnRkYR3buNt","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"yimtQFLowqMCJ-tGjhRQaFcS","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/5228/5601875420_b2f1caea1a_o.jpg"}}}},"contextId":"olmAB7WEM1f6nhXqeMC-igom"}}
+frontend_1 | 2018-01-31T12:00:53.582955262Z {"@timestamp":"2018-01-31T12:00:53.581+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"yimtQFLowqMCJ-tGjhRQaFcS","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/5228/5601875420_b2f1caea1a_o.jpg"}}},{"name":"IngestionRouting","id":"m41Wrzxc2hcNacnRkYR3buNt","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"yimtQFLowqMCJ-tGjhRQaFcS","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/5228/5601875420_b2f1caea1a_o.jpg"}}}},"contextId":"olmAB7WEM1f6nhXqeMC-igom"}}
+frontend_1 | 2018-01-31T12:00:53.586810079Z {"@timestamp":"2018-01-31T12:00:53.586+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"vk9-SAf4ZTegZfRT_W1awKWc","details":{"message":{"partnerId":"test-partner-id","masterId":"6A9CB6772C712869EC3E6E505BA5E4235817D745BC9CC5D25601B7B18DD8B64C","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/5228/5601875420_b2f1caea1a_o.jpg"}}},{"name":"IngestionRouting","id":"m41Wrzxc2hcNacnRkYR3buNt","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"vk9-SAf4ZTegZfRT_W1awKWc","details":{"message":{"partnerId":"test-partner-id","masterId":"6A9CB6772C712869EC3E6E505BA5E4235817D745BC9CC5D25601B7B18DD8B64C","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/5228/5601875420_b2f1caea1a_o.jpg"}}}},"contextId":"olmAB7WEM1f6nhXqeMC-igom"}}
+frontend_1 | 2018-01-31T12:00:53.587102548Z {"@timestamp":"2018-01-31T12:00:53.560+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"anT6B-RgcLPki8WIJ6pfrJHA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"anT6B-RgcLPki8WIJ6pfrJHA","details":{"partnerId":"test-partner-id"}}},"contextId":"7afkPRUGbhumuQONaV2fYWsi"}}
+frontend_1 | 2018-01-31T12:00:53.589791070Z {"@timestamp":"2018-01-31T12:00:53.572+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"tAR-faGqA5U5c-CHUjBVITkV","details":{}},{"name":"IngestionRouting","id":"lxDX_5iQtS0HFNuRdfX0YDzN","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"tAR-faGqA5U5c-CHUjBVITkV","details":{}}},"contextId":"_0HiuIZ2yTG7x2QQsIrrtkfe"}}
+frontend_1 | 2018-01-31T12:00:53.589977570Z {"@timestamp":"2018-01-31T12:00:53.570+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"gVdrWFJ95B2NLF_C8tBVSn3_","details":{}},{"name":"IngestionRouting","id":"FqRp6GXP3SNju7AaAmqMNM2L","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"gVdrWFJ95B2NLF_C8tBVSn3_","details":{}}},"contextId":"TQzo3xIfTd7M4Yvf02CqcWhM"}}
+frontend_1 | 2018-01-31T12:00:53.590254463Z {"@timestamp":"2018-01-31T12:00:53.577+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"6rE1S9qlfOWlD42hjKHc3YLd","details":{"message":{"partnerId":"test-partner-id","masterId":"201B25C802D41457C477C25AF1E25EA1EF2B583DA6A1D261750FDBF5696DC631","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/201/504875479_4fd1bb1497_o.jpg"}}},{"name":"IngestionRouting","id":"n5j_Z_OxSa32ohG3vcupitjj","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(b169857d-abb1-a453-2b9b-48d763dcec09)"},"contextId":"S7UoXf_B3nw5Z_ZYi8vADHsg"}}
+frontend_1 | 2018-01-31T12:00:53.590580611Z {"@timestamp":"2018-01-31T12:00:53.577+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"6DpJ09taxl9nyZPtntiFf4NE","details":{"message":{"partnerId":"test-partner-id","masterId":"D2E319E5B06EACD09C7158D781516292126C6136AFFC977F06A8BD0D58053E84","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/5556/14727637427_15805e79bb_o.jpg"}}},{"name":"IngestionRouting","id":"yckGQDcy2rzGOx8EOXvBiiUs","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(fe78e0ac-f02c-92bf-5629-a43acd880255)"},"contextId":"2CsEq74C9WPPKcs3WKbKlCch"}}
+frontend_1 | 2018-01-31T12:00:53.591562528Z {"@timestamp":"2018-01-31T12:00:53.591+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"anT6B-RgcLPki8WIJ6pfrJHA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"anT6B-RgcLPki8WIJ6pfrJHA","details":{"partnerId":"test-partner-id"}}},"contextId":"7afkPRUGbhumuQONaV2fYWsi"}}
+frontend_1 | 2018-01-31T12:00:53.596701752Z {"@timestamp":"2018-01-31T12:00:53.593+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"tAR-faGqA5U5c-CHUjBVITkV","details":{}},{"name":"IngestionRouting","id":"lxDX_5iQtS0HFNuRdfX0YDzN","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"tAR-faGqA5U5c-CHUjBVITkV","details":{}}},"contextId":"_0HiuIZ2yTG7x2QQsIrrtkfe"}}
+frontend_1 | 2018-01-31T12:00:53.596863267Z {"@timestamp":"2018-01-31T12:00:53.594+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"gVdrWFJ95B2NLF_C8tBVSn3_","details":{}},{"name":"IngestionRouting","id":"FqRp6GXP3SNju7AaAmqMNM2L","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"gVdrWFJ95B2NLF_C8tBVSn3_","details":{}}},"contextId":"TQzo3xIfTd7M4Yvf02CqcWhM"}}
+frontend_1 | 2018-01-31T12:00:53.597911182Z {"@timestamp":"2018-01-31T12:00:53.596+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"j141aCwPGa4dKXb6Jg81xiaD","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"vyK0b5VVC7mgTLnNrZc_r9vL"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"j141aCwPGa4dKXb6Jg81xiaD","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"vyK0b5VVC7mgTLnNrZc_r9vL"}}},"contextId":"7afkPRUGbhumuQONaV2fYWsi"}}
+frontend_1 | 2018-01-31T12:00:53.614156946Z {"@timestamp":"2018-01-31T12:00:53.613+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"vk9-SAf4ZTegZfRT_W1awKWc","details":{"message":{"partnerId":"test-partner-id","masterId":"6A9CB6772C712869EC3E6E505BA5E4235817D745BC9CC5D25601B7B18DD8B64C","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/5228/5601875420_b2f1caea1a_o.jpg"}}},{"name":"IngestionRouting","id":"m41Wrzxc2hcNacnRkYR3buNt","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"vk9-SAf4ZTegZfRT_W1awKWc","details":{"message":{"partnerId":"test-partner-id","masterId":"6A9CB6772C712869EC3E6E505BA5E4235817D745BC9CC5D25601B7B18DD8B64C","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/5228/5601875420_b2f1caea1a_o.jpg"}}}},"contextId":"olmAB7WEM1f6nhXqeMC-igom"}}
+frontend_1 | 2018-01-31T12:00:53.693223605Z {"@timestamp":"2018-01-31T12:00:53.690+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"xDiE6_hON14PyXX_fHPDUIIH","details":{}},{"name":"IngestionRouting","id":"anT6B-RgcLPki8WIJ6pfrJHA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"xDiE6_hON14PyXX_fHPDUIIH","details":{}}},"contextId":"7afkPRUGbhumuQONaV2fYWsi"}}
+frontend_1 | 2018-01-31T12:00:53.701025036Z {"@timestamp":"2018-01-31T12:00:53.693+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"xDiE6_hON14PyXX_fHPDUIIH","details":{}},{"name":"IngestionRouting","id":"anT6B-RgcLPki8WIJ6pfrJHA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"xDiE6_hON14PyXX_fHPDUIIH","details":{}}},"contextId":"7afkPRUGbhumuQONaV2fYWsi"}}
+frontend_1 | 2018-01-31T12:00:53.722031005Z {"@timestamp":"2018-01-31T12:00:53.721+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"gVdrWFJ95B2NLF_C8tBVSn3_","details":{}},{"name":"IngestionRouting","id":"FqRp6GXP3SNju7AaAmqMNM2L","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"TQzo3xIfTd7M4Yvf02CqcWhM"}}
+frontend_1 | 2018-01-31T12:00:53.723357685Z {"@timestamp":"2018-01-31T12:00:53.722+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"tAR-faGqA5U5c-CHUjBVITkV","details":{}},{"name":"IngestionRouting","id":"lxDX_5iQtS0HFNuRdfX0YDzN","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"_0HiuIZ2yTG7x2QQsIrrtkfe"}}
+frontend_1 | 2018-01-31T12:00:53.734635033Z {"@timestamp":"2018-01-31T12:00:53.734+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"xDiE6_hON14PyXX_fHPDUIIH","details":{}},{"name":"IngestionRouting","id":"anT6B-RgcLPki8WIJ6pfrJHA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"7afkPRUGbhumuQONaV2fYWsi"}}
+frontend_1 | 2018-01-31T12:00:53.816150499Z {"@timestamp":"2018-01-31T12:00:53.814+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"vk9-SAf4ZTegZfRT_W1awKWc","details":{"message":{"partnerId":"test-partner-id","masterId":"6A9CB6772C712869EC3E6E505BA5E4235817D745BC9CC5D25601B7B18DD8B64C","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/5228/5601875420_b2f1caea1a_o.jpg"}}},{"name":"IngestionRouting","id":"m41Wrzxc2hcNacnRkYR3buNt","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(7a0d6cd9-2109-383f-1a92-0238b84677cb)"},"contextId":"olmAB7WEM1f6nhXqeMC-igom"}}
+frontend_1 | 2018-01-31T12:00:54.454542743Z {"@timestamp":"2018-01-31T12:00:54.454+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"gVdrWFJ95B2NLF_C8tBVSn3_","details":{}},{"name":"IngestionRouting","id":"FqRp6GXP3SNju7AaAmqMNM2L","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"TQzo3xIfTd7M4Yvf02CqcWhM"}}
+frontend_1 | 2018-01-31T12:00:54.456039035Z {"@timestamp":"2018-01-31T12:00:54.454+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"tAR-faGqA5U5c-CHUjBVITkV","details":{}},{"name":"IngestionRouting","id":"lxDX_5iQtS0HFNuRdfX0YDzN","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"_0HiuIZ2yTG7x2QQsIrrtkfe"}}
+frontend_1 | 2018-01-31T12:00:54.473201714Z {"@timestamp":"2018-01-31T12:00:54.467+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:00:54.474130294Z {"@timestamp":"2018-01-31T12:00:54.473+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:00:54.474500461Z {"@timestamp":"2018-01-31T12:00:54.471+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"xDiE6_hON14PyXX_fHPDUIIH","details":{}},{"name":"IngestionRouting","id":"anT6B-RgcLPki8WIJ6pfrJHA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"7afkPRUGbhumuQONaV2fYWsi"}}
+frontend_1 | 2018-01-31T12:00:54.478081188Z {"@timestamp":"2018-01-31T12:00:54.477+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:00:55.420632143Z {"@timestamp":"2018-01-31T12:00:55.419+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"oCfiNDnq-6zoqxNZSjJL8rfY","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"QcOjWV4_1WKGo1z1mMsjsXjW"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"oCfiNDnq-6zoqxNZSjJL8rfY","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"QcOjWV4_1WKGo1z1mMsjsXjW"}}},"contextId":"4VIo_FM_Ho0jThEM1qNMj6-s"}}
+frontend_1 | 2018-01-31T12:00:55.421753013Z {"@timestamp":"2018-01-31T12:00:55.420+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"hZjyhWbZXaFMWcmGkGlxQA4N","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"hZjyhWbZXaFMWcmGkGlxQA4N","details":{"partnerId":"test-partner-id"}}},"contextId":"4VIo_FM_Ho0jThEM1qNMj6-s"}}
+frontend_1 | 2018-01-31T12:00:55.422592418Z {"@timestamp":"2018-01-31T12:00:55.422+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"hZjyhWbZXaFMWcmGkGlxQA4N","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"hZjyhWbZXaFMWcmGkGlxQA4N","details":{"partnerId":"test-partner-id"}}},"contextId":"4VIo_FM_Ho0jThEM1qNMj6-s"}}
+frontend_1 | 2018-01-31T12:00:55.425840668Z {"@timestamp":"2018-01-31T12:00:55.425+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"wJijsEbz4nB5U943Y6lUhZ6X","details":{"endpoint":"GET /health","transactionId":"xO2Df7cu5VYL91dz2iI23rlS"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"wJijsEbz4nB5U943Y6lUhZ6X","details":{"endpoint":"GET /health","transactionId":"xO2Df7cu5VYL91dz2iI23rlS"}}},"contextId":"PtuGrQiCFKPngx5qkE95Jvuq"}}
+frontend_1 | 2018-01-31T12:00:55.426635286Z {"@timestamp":"2018-01-31T12:00:55.425+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"wJijsEbz4nB5U943Y6lUhZ6X","details":{"endpoint":"GET /health","transactionId":"xO2Df7cu5VYL91dz2iI23rlS"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"wJijsEbz4nB5U943Y6lUhZ6X","details":{"endpoint":"GET /health","transactionId":"xO2Df7cu5VYL91dz2iI23rlS"}}},"contextId":"PtuGrQiCFKPngx5qkE95Jvuq"}}
+frontend_1 | 2018-01-31T12:00:55.426695203Z {"@timestamp":"2018-01-31T12:00:55.426+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"K-f6qSLI3Qn5EdTAyobPbv5j","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"X7F1r5lqV8L4IOZSfM1kIESN"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"K-f6qSLI3Qn5EdTAyobPbv5j","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"X7F1r5lqV8L4IOZSfM1kIESN"}}},"contextId":"t0IebZAEfj127tuCfJx9_70q"}}
+frontend_1 | 2018-01-31T12:00:55.427679750Z {"@timestamp":"2018-01-31T12:00:55.427+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"Nxx_DVmuGEUvG1EO7ru7TG8l","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"Nxx_DVmuGEUvG1EO7ru7TG8l","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"t0IebZAEfj127tuCfJx9_70q"}}
+frontend_1 | 2018-01-31T12:00:55.428286981Z {"@timestamp":"2018-01-31T12:00:55.427+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"Nxx_DVmuGEUvG1EO7ru7TG8l","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"Nxx_DVmuGEUvG1EO7ru7TG8l","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"t0IebZAEfj127tuCfJx9_70q"}}
+frontend_1 | 2018-01-31T12:00:55.428823222Z {"@timestamp":"2018-01-31T12:00:55.428+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"K-f6qSLI3Qn5EdTAyobPbv5j","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"X7F1r5lqV8L4IOZSfM1kIESN"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"K-f6qSLI3Qn5EdTAyobPbv5j","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"X7F1r5lqV8L4IOZSfM1kIESN"}}},"contextId":"t0IebZAEfj127tuCfJx9_70q"}}
+frontend_1 | 2018-01-31T12:00:55.430606364Z {"@timestamp":"2018-01-31T12:00:55.422+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"oCfiNDnq-6zoqxNZSjJL8rfY","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"QcOjWV4_1WKGo1z1mMsjsXjW"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"oCfiNDnq-6zoqxNZSjJL8rfY","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"QcOjWV4_1WKGo1z1mMsjsXjW"}}},"contextId":"4VIo_FM_Ho0jThEM1qNMj6-s"}}
+frontend_1 | 2018-01-31T12:00:55.434214057Z {"@timestamp":"2018-01-31T12:00:55.433+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"UcYVTtDs1U4QzksqQsoDJAVK","details":{"request":{"client":"test","metadata":{},"reference":"https://c3.staticflickr.com/4/3635/3295288222_97218f0c8d_o.jpg"}}},{"name":"IngestionRouting","id":"hZjyhWbZXaFMWcmGkGlxQA4N","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"UcYVTtDs1U4QzksqQsoDJAVK","details":{"request":{"client":"test","metadata":{},"reference":"https://c3.staticflickr.com/4/3635/3295288222_97218f0c8d_o.jpg"}}}},"contextId":"4VIo_FM_Ho0jThEM1qNMj6-s"}}
+frontend_1 | 2018-01-31T12:00:55.441256629Z {"@timestamp":"2018-01-31T12:00:55.440+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"UcYVTtDs1U4QzksqQsoDJAVK","details":{"request":{"client":"test","metadata":{},"reference":"https://c3.staticflickr.com/4/3635/3295288222_97218f0c8d_o.jpg"}}},{"name":"IngestionRouting","id":"hZjyhWbZXaFMWcmGkGlxQA4N","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"UcYVTtDs1U4QzksqQsoDJAVK","details":{"request":{"client":"test","metadata":{},"reference":"https://c3.staticflickr.com/4/3635/3295288222_97218f0c8d_o.jpg"}}}},"contextId":"4VIo_FM_Ho0jThEM1qNMj6-s"}}
+frontend_1 | 2018-01-31T12:00:55.441512707Z {"@timestamp":"2018-01-31T12:00:55.441+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"lQY9EAtNA6sMBC6JqwtwiAkD","details":{}},{"name":"IngestionRouting","id":"Nxx_DVmuGEUvG1EO7ru7TG8l","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"lQY9EAtNA6sMBC6JqwtwiAkD","details":{}}},"contextId":"t0IebZAEfj127tuCfJx9_70q"}}
+frontend_1 | 2018-01-31T12:00:55.441835310Z {"@timestamp":"2018-01-31T12:00:55.441+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"lQY9EAtNA6sMBC6JqwtwiAkD","details":{}},{"name":"IngestionRouting","id":"Nxx_DVmuGEUvG1EO7ru7TG8l","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"lQY9EAtNA6sMBC6JqwtwiAkD","details":{}}},"contextId":"t0IebZAEfj127tuCfJx9_70q"}}
+frontend_1 | 2018-01-31T12:00:55.442100579Z {"@timestamp":"2018-01-31T12:00:55.441+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"AX4GlG6FEC1HcWBckxQYOUUz","details":{"message":{"partnerId":"test-partner-id","masterId":"0800E111539745EBB1C884E6D2A21F519B2D264FF39B1919F7467C45985E26EE","client":"test","metadata":{},"reference":"https://c3.staticflickr.com/4/3635/3295288222_97218f0c8d_o.jpg"}}},{"name":"IngestionRouting","id":"hZjyhWbZXaFMWcmGkGlxQA4N","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"AX4GlG6FEC1HcWBckxQYOUUz","details":{"message":{"partnerId":"test-partner-id","masterId":"0800E111539745EBB1C884E6D2A21F519B2D264FF39B1919F7467C45985E26EE","client":"test","metadata":{},"reference":"https://c3.staticflickr.com/4/3635/3295288222_97218f0c8d_o.jpg"}}}},"contextId":"4VIo_FM_Ho0jThEM1qNMj6-s"}}
+frontend_1 | 2018-01-31T12:00:55.442344599Z {"@timestamp":"2018-01-31T12:00:55.442+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"lQY9EAtNA6sMBC6JqwtwiAkD","details":{}},{"name":"IngestionRouting","id":"Nxx_DVmuGEUvG1EO7ru7TG8l","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"t0IebZAEfj127tuCfJx9_70q"}}
+frontend_1 | 2018-01-31T12:00:55.442927154Z {"@timestamp":"2018-01-31T12:00:55.442+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"AX4GlG6FEC1HcWBckxQYOUUz","details":{"message":{"partnerId":"test-partner-id","masterId":"0800E111539745EBB1C884E6D2A21F519B2D264FF39B1919F7467C45985E26EE","client":"test","metadata":{},"reference":"https://c3.staticflickr.com/4/3635/3295288222_97218f0c8d_o.jpg"}}},{"name":"IngestionRouting","id":"hZjyhWbZXaFMWcmGkGlxQA4N","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"AX4GlG6FEC1HcWBckxQYOUUz","details":{"message":{"partnerId":"test-partner-id","masterId":"0800E111539745EBB1C884E6D2A21F519B2D264FF39B1919F7467C45985E26EE","client":"test","metadata":{},"reference":"https://c3.staticflickr.com/4/3635/3295288222_97218f0c8d_o.jpg"}}}},"contextId":"4VIo_FM_Ho0jThEM1qNMj6-s"}}
+frontend_1 | 2018-01-31T12:00:55.510138864Z {"@timestamp":"2018-01-31T12:00:55.509+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"AX4GlG6FEC1HcWBckxQYOUUz","details":{"message":{"partnerId":"test-partner-id","masterId":"0800E111539745EBB1C884E6D2A21F519B2D264FF39B1919F7467C45985E26EE","client":"test","metadata":{},"reference":"https://c3.staticflickr.com/4/3635/3295288222_97218f0c8d_o.jpg"}}},{"name":"IngestionRouting","id":"hZjyhWbZXaFMWcmGkGlxQA4N","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(939cbafe-a522-546a-1a0a-f397f2ce1a17)"},"contextId":"4VIo_FM_Ho0jThEM1qNMj6-s"}}
+frontend_1 | 2018-01-31T12:00:55.521839405Z {"@timestamp":"2018-01-31T12:00:55.519+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"lQY9EAtNA6sMBC6JqwtwiAkD","details":{}},{"name":"IngestionRouting","id":"Nxx_DVmuGEUvG1EO7ru7TG8l","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"t0IebZAEfj127tuCfJx9_70q"}}
+frontend_1 | 2018-01-31T12:00:55.524721711Z {"@timestamp":"2018-01-31T12:00:55.524+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:00:56.421046235Z {"@timestamp":"2018-01-31T12:00:56.420+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"tAW7QqEckdSHiylpes8gCdf1","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"S7RVLq7T5ozAG41zT7csGQGL"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"tAW7QqEckdSHiylpes8gCdf1","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"S7RVLq7T5ozAG41zT7csGQGL"}}},"contextId":"3_CQpsIr7LVY0ioBM6bvZRd4"}}
+frontend_1 | 2018-01-31T12:00:56.424248036Z {"@timestamp":"2018-01-31T12:00:56.423+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"0uTTfZIQ5fdDxyicfJOGcXu-","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"0uTTfZIQ5fdDxyicfJOGcXu-","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"3_CQpsIr7LVY0ioBM6bvZRd4"}}
+frontend_1 | 2018-01-31T12:00:56.425754976Z {"@timestamp":"2018-01-31T12:00:56.425+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"0uTTfZIQ5fdDxyicfJOGcXu-","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"0uTTfZIQ5fdDxyicfJOGcXu-","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"3_CQpsIr7LVY0ioBM6bvZRd4"}}
+frontend_1 | 2018-01-31T12:00:56.426315535Z {"@timestamp":"2018-01-31T12:00:56.425+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"tAW7QqEckdSHiylpes8gCdf1","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"S7RVLq7T5ozAG41zT7csGQGL"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"tAW7QqEckdSHiylpes8gCdf1","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"S7RVLq7T5ozAG41zT7csGQGL"}}},"contextId":"3_CQpsIr7LVY0ioBM6bvZRd4"}}
+frontend_1 | 2018-01-31T12:00:56.439825367Z {"@timestamp":"2018-01-31T12:00:56.439+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"BAgyt8pvjc-_qbEukuj0LVrs","details":{"endpoint":"GET /health","transactionId":"XHw9A57_rphfVmT5I5jLmYfz"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"BAgyt8pvjc-_qbEukuj0LVrs","details":{"endpoint":"GET /health","transactionId":"XHw9A57_rphfVmT5I5jLmYfz"}}},"contextId":"T8oQvAWQ6n4v_xwkU1e99DeF"}}
+frontend_1 | 2018-01-31T12:00:56.440239465Z {"@timestamp":"2018-01-31T12:00:56.439+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"BAgyt8pvjc-_qbEukuj0LVrs","details":{"endpoint":"GET /health","transactionId":"XHw9A57_rphfVmT5I5jLmYfz"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"BAgyt8pvjc-_qbEukuj0LVrs","details":{"endpoint":"GET /health","transactionId":"XHw9A57_rphfVmT5I5jLmYfz"}}},"contextId":"T8oQvAWQ6n4v_xwkU1e99DeF"}}
+frontend_1 | 2018-01-31T12:00:56.445006200Z {"@timestamp":"2018-01-31T12:00:56.443+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"7CC6R33aCfo10PR8GD21n0Gs","details":{"request":{"client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4058/4647114749_21fe85d061_o.jpg"}}},{"name":"IngestionRouting","id":"0uTTfZIQ5fdDxyicfJOGcXu-","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"7CC6R33aCfo10PR8GD21n0Gs","details":{"request":{"client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4058/4647114749_21fe85d061_o.jpg"}}}},"contextId":"3_CQpsIr7LVY0ioBM6bvZRd4"}}
+frontend_1 | 2018-01-31T12:00:56.445986864Z {"@timestamp":"2018-01-31T12:00:56.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"lEmjkcKXqJovjfPmEpnHTLvY","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"bud1nPDYEjNAnQnaWY9s94b1"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"lEmjkcKXqJovjfPmEpnHTLvY","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"bud1nPDYEjNAnQnaWY9s94b1"}}},"contextId":"G0H_218n5rqBxg1AgBYx4KIW"}}
+frontend_1 | 2018-01-31T12:00:56.446705106Z {"@timestamp":"2018-01-31T12:00:56.446+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"NBzsipbGqSDFm5bSruIX0XsW","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"NBzsipbGqSDFm5bSruIX0XsW","details":{"partnerId":"test-partner-id"}}},"contextId":"G0H_218n5rqBxg1AgBYx4KIW"}}
+frontend_1 | 2018-01-31T12:00:56.447265614Z {"@timestamp":"2018-01-31T12:00:56.446+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"NBzsipbGqSDFm5bSruIX0XsW","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"NBzsipbGqSDFm5bSruIX0XsW","details":{"partnerId":"test-partner-id"}}},"contextId":"G0H_218n5rqBxg1AgBYx4KIW"}}
+frontend_1 | 2018-01-31T12:00:56.447770684Z {"@timestamp":"2018-01-31T12:00:56.447+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"lEmjkcKXqJovjfPmEpnHTLvY","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"bud1nPDYEjNAnQnaWY9s94b1"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"lEmjkcKXqJovjfPmEpnHTLvY","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"bud1nPDYEjNAnQnaWY9s94b1"}}},"contextId":"G0H_218n5rqBxg1AgBYx4KIW"}}
+frontend_1 | 2018-01-31T12:00:56.448575912Z {"@timestamp":"2018-01-31T12:00:56.448+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"7CC6R33aCfo10PR8GD21n0Gs","details":{"request":{"client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4058/4647114749_21fe85d061_o.jpg"}}},{"name":"IngestionRouting","id":"0uTTfZIQ5fdDxyicfJOGcXu-","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"7CC6R33aCfo10PR8GD21n0Gs","details":{"request":{"client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4058/4647114749_21fe85d061_o.jpg"}}}},"contextId":"3_CQpsIr7LVY0ioBM6bvZRd4"}}
+frontend_1 | 2018-01-31T12:00:56.450585472Z {"@timestamp":"2018-01-31T12:00:56.450+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"k8k4aARO-7xaYuulHT6Ou1VK","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"DBF68B9AADEDABF1EEC628383EF087930309562FDA9C7C645CEFFE6BE4B272E1","client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4058/4647114749_21fe85d061_o.jpg"}}},{"name":"IngestionRouting","id":"0uTTfZIQ5fdDxyicfJOGcXu-","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"k8k4aARO-7xaYuulHT6Ou1VK","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"DBF68B9AADEDABF1EEC628383EF087930309562FDA9C7C645CEFFE6BE4B272E1","client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4058/4647114749_21fe85d061_o.jpg"}}}},"contextId":"3_CQpsIr7LVY0ioBM6bvZRd4"}}
+frontend_1 | 2018-01-31T12:00:56.457564601Z {"@timestamp":"2018-01-31T12:00:56.456+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"k8k4aARO-7xaYuulHT6Ou1VK","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"DBF68B9AADEDABF1EEC628383EF087930309562FDA9C7C645CEFFE6BE4B272E1","client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4058/4647114749_21fe85d061_o.jpg"}}},{"name":"IngestionRouting","id":"0uTTfZIQ5fdDxyicfJOGcXu-","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"k8k4aARO-7xaYuulHT6Ou1VK","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"DBF68B9AADEDABF1EEC628383EF087930309562FDA9C7C645CEFFE6BE4B272E1","client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4058/4647114749_21fe85d061_o.jpg"}}}},"contextId":"3_CQpsIr7LVY0ioBM6bvZRd4"}}
+frontend_1 | 2018-01-31T12:00:56.469841849Z {"@timestamp":"2018-01-31T12:00:56.469+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"uH0batV4ZrMrg1_UabQULKmK","details":{}},{"name":"IngestionRouting","id":"NBzsipbGqSDFm5bSruIX0XsW","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"uH0batV4ZrMrg1_UabQULKmK","details":{}}},"contextId":"G0H_218n5rqBxg1AgBYx4KIW"}}
+frontend_1 | 2018-01-31T12:00:56.470238334Z {"@timestamp":"2018-01-31T12:00:56.469+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"uH0batV4ZrMrg1_UabQULKmK","details":{}},{"name":"IngestionRouting","id":"NBzsipbGqSDFm5bSruIX0XsW","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"uH0batV4ZrMrg1_UabQULKmK","details":{}}},"contextId":"G0H_218n5rqBxg1AgBYx4KIW"}}
+frontend_1 | 2018-01-31T12:00:56.470814585Z {"@timestamp":"2018-01-31T12:00:56.470+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"uH0batV4ZrMrg1_UabQULKmK","details":{}},{"name":"IngestionRouting","id":"NBzsipbGqSDFm5bSruIX0XsW","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"G0H_218n5rqBxg1AgBYx4KIW"}}
+frontend_1 | 2018-01-31T12:00:56.540923473Z {"@timestamp":"2018-01-31T12:00:56.540+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"k8k4aARO-7xaYuulHT6Ou1VK","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"DBF68B9AADEDABF1EEC628383EF087930309562FDA9C7C645CEFFE6BE4B272E1","client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4058/4647114749_21fe85d061_o.jpg"}}},{"name":"IngestionRouting","id":"0uTTfZIQ5fdDxyicfJOGcXu-","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(b68d6f0a-c8ef-44d2-fed3-d08b2471adfc)"},"contextId":"3_CQpsIr7LVY0ioBM6bvZRd4"}}
+frontend_1 | 2018-01-31T12:00:56.559898697Z {"@timestamp":"2018-01-31T12:00:56.559+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"uH0batV4ZrMrg1_UabQULKmK","details":{}},{"name":"IngestionRouting","id":"NBzsipbGqSDFm5bSruIX0XsW","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"G0H_218n5rqBxg1AgBYx4KIW"}}
+frontend_1 | 2018-01-31T12:00:56.561651441Z {"@timestamp":"2018-01-31T12:00:56.561+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:00:57.426066747Z {"@timestamp":"2018-01-31T12:00:57.425+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"jbHUPefmU8GLmyY1RogRRljH","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"YgREUeC8Dh8BHPhDm7nZjYfb"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"jbHUPefmU8GLmyY1RogRRljH","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"YgREUeC8Dh8BHPhDm7nZjYfb"}}},"contextId":"60_8uBCNbkiYcvY9d2RsHvCq"}}
+frontend_1 | 2018-01-31T12:00:57.431611684Z {"@timestamp":"2018-01-31T12:00:57.429+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"Et14s43Qf7htCfDPY8FSsprI","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"Et14s43Qf7htCfDPY8FSsprI","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"60_8uBCNbkiYcvY9d2RsHvCq"}}
+frontend_1 | 2018-01-31T12:00:57.432739929Z {"@timestamp":"2018-01-31T12:00:57.432+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"dOOgWPd1RaMiO5YrMqxwqet-","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"AHAcwVM477FLfPGRnhUv-UVT"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"dOOgWPd1RaMiO5YrMqxwqet-","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"AHAcwVM477FLfPGRnhUv-UVT"}}},"contextId":"zJZNpY7chE3ydVfRLqm-dV1z"}}
+frontend_1 | 2018-01-31T12:00:57.433210770Z {"@timestamp":"2018-01-31T12:00:57.432+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"Et14s43Qf7htCfDPY8FSsprI","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"Et14s43Qf7htCfDPY8FSsprI","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"60_8uBCNbkiYcvY9d2RsHvCq"}}
+frontend_1 | 2018-01-31T12:00:57.433715673Z {"@timestamp":"2018-01-31T12:00:57.433+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"jbHUPefmU8GLmyY1RogRRljH","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"YgREUeC8Dh8BHPhDm7nZjYfb"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"jbHUPefmU8GLmyY1RogRRljH","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"YgREUeC8Dh8BHPhDm7nZjYfb"}}},"contextId":"60_8uBCNbkiYcvY9d2RsHvCq"}}
+frontend_1 | 2018-01-31T12:00:57.436309059Z {"@timestamp":"2018-01-31T12:00:57.435+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"iykMqQrZiU1mp8uEsaK5IPp9","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"iykMqQrZiU1mp8uEsaK5IPp9","details":{"partnerId":"test-partner-id"}}},"contextId":"zJZNpY7chE3ydVfRLqm-dV1z"}}
+frontend_1 | 2018-01-31T12:00:57.436983874Z {"@timestamp":"2018-01-31T12:00:57.436+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"iykMqQrZiU1mp8uEsaK5IPp9","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"iykMqQrZiU1mp8uEsaK5IPp9","details":{"partnerId":"test-partner-id"}}},"contextId":"zJZNpY7chE3ydVfRLqm-dV1z"}}
+frontend_1 | 2018-01-31T12:00:57.437883496Z {"@timestamp":"2018-01-31T12:00:57.437+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"GeMxx5JhHZseiaK3oVOgVS7G","details":{"endpoint":"GET /health","transactionId":"5GYfnWzVjwU2jZ-o1_4ag__I"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"GeMxx5JhHZseiaK3oVOgVS7G","details":{"endpoint":"GET /health","transactionId":"5GYfnWzVjwU2jZ-o1_4ag__I"}}},"contextId":"IGD3i1SDYkuWat9qPqaqSstW"}}
+frontend_1 | 2018-01-31T12:00:57.438832969Z {"@timestamp":"2018-01-31T12:00:57.438+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"GeMxx5JhHZseiaK3oVOgVS7G","details":{"endpoint":"GET /health","transactionId":"5GYfnWzVjwU2jZ-o1_4ag__I"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"GeMxx5JhHZseiaK3oVOgVS7G","details":{"endpoint":"GET /health","transactionId":"5GYfnWzVjwU2jZ-o1_4ag__I"}}},"contextId":"IGD3i1SDYkuWat9qPqaqSstW"}}
+frontend_1 | 2018-01-31T12:00:57.447548743Z {"@timestamp":"2018-01-31T12:00:57.447+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"dOOgWPd1RaMiO5YrMqxwqet-","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"AHAcwVM477FLfPGRnhUv-UVT"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"dOOgWPd1RaMiO5YrMqxwqet-","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"AHAcwVM477FLfPGRnhUv-UVT"}}},"contextId":"zJZNpY7chE3ydVfRLqm-dV1z"}}
+frontend_1 | 2018-01-31T12:00:57.451697427Z {"@timestamp":"2018-01-31T12:00:57.451+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"kPYkS-YrzE5Cu3cF9TLy1Fz6","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3762/18836528235_25ecfeac74_o.jpg"}}},{"name":"IngestionRouting","id":"iykMqQrZiU1mp8uEsaK5IPp9","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"kPYkS-YrzE5Cu3cF9TLy1Fz6","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3762/18836528235_25ecfeac74_o.jpg"}}}},"contextId":"zJZNpY7chE3ydVfRLqm-dV1z"}}
+frontend_1 | 2018-01-31T12:00:57.461137348Z {"@timestamp":"2018-01-31T12:00:57.460+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"kPYkS-YrzE5Cu3cF9TLy1Fz6","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3762/18836528235_25ecfeac74_o.jpg"}}},{"name":"IngestionRouting","id":"iykMqQrZiU1mp8uEsaK5IPp9","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"kPYkS-YrzE5Cu3cF9TLy1Fz6","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3762/18836528235_25ecfeac74_o.jpg"}}}},"contextId":"zJZNpY7chE3ydVfRLqm-dV1z"}}
+frontend_1 | 2018-01-31T12:00:57.481219181Z {"@timestamp":"2018-01-31T12:00:57.480+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"f3Bjc2tVkMgkqZjOdvqfiPOE","details":{"message":{"partnerId":"test-partner-id","masterId":"65EFDD1CC20E4B7E35493C93BF085E5F9B8BF938A0816920BFBADEB7CB362EFA","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3762/18836528235_25ecfeac74_o.jpg"}}},{"name":"IngestionRouting","id":"iykMqQrZiU1mp8uEsaK5IPp9","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"f3Bjc2tVkMgkqZjOdvqfiPOE","details":{"message":{"partnerId":"test-partner-id","masterId":"65EFDD1CC20E4B7E35493C93BF085E5F9B8BF938A0816920BFBADEB7CB362EFA","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3762/18836528235_25ecfeac74_o.jpg"}}}},"contextId":"zJZNpY7chE3ydVfRLqm-dV1z"}}
+frontend_1 | 2018-01-31T12:00:57.483024407Z {"@timestamp":"2018-01-31T12:00:57.481+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"MZaJw4JWjDtvj6sYTob3Hm16","details":{}},{"name":"IngestionRouting","id":"Et14s43Qf7htCfDPY8FSsprI","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"MZaJw4JWjDtvj6sYTob3Hm16","details":{}}},"contextId":"60_8uBCNbkiYcvY9d2RsHvCq"}}
+frontend_1 | 2018-01-31T12:00:57.483457010Z {"@timestamp":"2018-01-31T12:00:57.483+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"MZaJw4JWjDtvj6sYTob3Hm16","details":{}},{"name":"IngestionRouting","id":"Et14s43Qf7htCfDPY8FSsprI","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"MZaJw4JWjDtvj6sYTob3Hm16","details":{}}},"contextId":"60_8uBCNbkiYcvY9d2RsHvCq"}}
+frontend_1 | 2018-01-31T12:00:57.483963466Z {"@timestamp":"2018-01-31T12:00:57.483+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"f3Bjc2tVkMgkqZjOdvqfiPOE","details":{"message":{"partnerId":"test-partner-id","masterId":"65EFDD1CC20E4B7E35493C93BF085E5F9B8BF938A0816920BFBADEB7CB362EFA","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3762/18836528235_25ecfeac74_o.jpg"}}},{"name":"IngestionRouting","id":"iykMqQrZiU1mp8uEsaK5IPp9","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"f3Bjc2tVkMgkqZjOdvqfiPOE","details":{"message":{"partnerId":"test-partner-id","masterId":"65EFDD1CC20E4B7E35493C93BF085E5F9B8BF938A0816920BFBADEB7CB362EFA","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3762/18836528235_25ecfeac74_o.jpg"}}}},"contextId":"zJZNpY7chE3ydVfRLqm-dV1z"}}
+frontend_1 | 2018-01-31T12:00:57.484203039Z {"@timestamp":"2018-01-31T12:00:57.483+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"MZaJw4JWjDtvj6sYTob3Hm16","details":{}},{"name":"IngestionRouting","id":"Et14s43Qf7htCfDPY8FSsprI","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"60_8uBCNbkiYcvY9d2RsHvCq"}}
+frontend_1 | 2018-01-31T12:00:57.589508916Z {"@timestamp":"2018-01-31T12:00:57.588+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"MZaJw4JWjDtvj6sYTob3Hm16","details":{}},{"name":"IngestionRouting","id":"Et14s43Qf7htCfDPY8FSsprI","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"60_8uBCNbkiYcvY9d2RsHvCq"}}
+frontend_1 | 2018-01-31T12:00:57.590808049Z {"@timestamp":"2018-01-31T12:00:57.590+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"f3Bjc2tVkMgkqZjOdvqfiPOE","details":{"message":{"partnerId":"test-partner-id","masterId":"65EFDD1CC20E4B7E35493C93BF085E5F9B8BF938A0816920BFBADEB7CB362EFA","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3762/18836528235_25ecfeac74_o.jpg"}}},{"name":"IngestionRouting","id":"iykMqQrZiU1mp8uEsaK5IPp9","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(53f18f13-0863-169a-12d0-9b9618b2eb77)"},"contextId":"zJZNpY7chE3ydVfRLqm-dV1z"}}
+frontend_1 | 2018-01-31T12:00:57.592330441Z {"@timestamp":"2018-01-31T12:00:57.591+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:00:59.422527887Z {"@timestamp":"2018-01-31T12:00:59.421+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"aUXHYuunz4a15UpOyqkY4pM3","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"47kazDm-PMgap6kVFo-4waqa"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"aUXHYuunz4a15UpOyqkY4pM3","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"47kazDm-PMgap6kVFo-4waqa"}}},"contextId":"TnaaTKjxWLCcIKOhmxMiNezu"}}
+frontend_1 | 2018-01-31T12:00:59.423934079Z {"@timestamp":"2018-01-31T12:00:59.423+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"tvQqcVOWay6s_ssnJxSskqf8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"tvQqcVOWay6s_ssnJxSskqf8","details":{"partnerId":"test-partner-id"}}},"contextId":"TnaaTKjxWLCcIKOhmxMiNezu"}}
+frontend_1 | 2018-01-31T12:00:59.424459714Z {"@timestamp":"2018-01-31T12:00:59.424+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"tvQqcVOWay6s_ssnJxSskqf8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"tvQqcVOWay6s_ssnJxSskqf8","details":{"partnerId":"test-partner-id"}}},"contextId":"TnaaTKjxWLCcIKOhmxMiNezu"}}
+frontend_1 | 2018-01-31T12:00:59.424969946Z {"@timestamp":"2018-01-31T12:00:59.424+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"aUXHYuunz4a15UpOyqkY4pM3","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"47kazDm-PMgap6kVFo-4waqa"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"aUXHYuunz4a15UpOyqkY4pM3","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"47kazDm-PMgap6kVFo-4waqa"}}},"contextId":"TnaaTKjxWLCcIKOhmxMiNezu"}}
+frontend_1 | 2018-01-31T12:00:59.428529580Z {"@timestamp":"2018-01-31T12:00:59.426+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"oL2wlEqk65CdOzvqf21mScXd","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/206/443130429_53bef4127c_o.jpg"}}},{"name":"IngestionRouting","id":"tvQqcVOWay6s_ssnJxSskqf8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"oL2wlEqk65CdOzvqf21mScXd","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/206/443130429_53bef4127c_o.jpg"}}}},"contextId":"TnaaTKjxWLCcIKOhmxMiNezu"}}
+frontend_1 | 2018-01-31T12:00:59.429922274Z {"@timestamp":"2018-01-31T12:00:59.429+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"cVaS4-zNmQPz_Mku4r7oIK1p","details":{"endpoint":"GET /health","transactionId":"flWNg9K0jB4gXl0_ow5ZHu43"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"cVaS4-zNmQPz_Mku4r7oIK1p","details":{"endpoint":"GET /health","transactionId":"flWNg9K0jB4gXl0_ow5ZHu43"}}},"contextId":"m02FMUjttF5ljyECL01YXTsg"}}
+frontend_1 | 2018-01-31T12:00:59.430662104Z {"@timestamp":"2018-01-31T12:00:59.430+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"oL2wlEqk65CdOzvqf21mScXd","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/206/443130429_53bef4127c_o.jpg"}}},{"name":"IngestionRouting","id":"tvQqcVOWay6s_ssnJxSskqf8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"oL2wlEqk65CdOzvqf21mScXd","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/206/443130429_53bef4127c_o.jpg"}}}},"contextId":"TnaaTKjxWLCcIKOhmxMiNezu"}}
+frontend_1 | 2018-01-31T12:00:59.431691627Z {"@timestamp":"2018-01-31T12:00:59.431+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"1Aohm4IDFqbgzhY15rwpAIB0","details":{"message":{"partnerId":"test-partner-id","masterId":"0A9A727DD787805F6264E2287A25EC79188817C1E8BA471F8429F467A080C4F2","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/206/443130429_53bef4127c_o.jpg"}}},{"name":"IngestionRouting","id":"tvQqcVOWay6s_ssnJxSskqf8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"1Aohm4IDFqbgzhY15rwpAIB0","details":{"message":{"partnerId":"test-partner-id","masterId":"0A9A727DD787805F6264E2287A25EC79188817C1E8BA471F8429F467A080C4F2","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/206/443130429_53bef4127c_o.jpg"}}}},"contextId":"TnaaTKjxWLCcIKOhmxMiNezu"}}
+frontend_1 | 2018-01-31T12:00:59.432442679Z {"@timestamp":"2018-01-31T12:00:59.431+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"cVaS4-zNmQPz_Mku4r7oIK1p","details":{"endpoint":"GET /health","transactionId":"flWNg9K0jB4gXl0_ow5ZHu43"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"cVaS4-zNmQPz_Mku4r7oIK1p","details":{"endpoint":"GET /health","transactionId":"flWNg9K0jB4gXl0_ow5ZHu43"}}},"contextId":"m02FMUjttF5ljyECL01YXTsg"}}
+frontend_1 | 2018-01-31T12:00:59.436557721Z {"@timestamp":"2018-01-31T12:00:59.435+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"1Aohm4IDFqbgzhY15rwpAIB0","details":{"message":{"partnerId":"test-partner-id","masterId":"0A9A727DD787805F6264E2287A25EC79188817C1E8BA471F8429F467A080C4F2","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/206/443130429_53bef4127c_o.jpg"}}},{"name":"IngestionRouting","id":"tvQqcVOWay6s_ssnJxSskqf8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"1Aohm4IDFqbgzhY15rwpAIB0","details":{"message":{"partnerId":"test-partner-id","masterId":"0A9A727DD787805F6264E2287A25EC79188817C1E8BA471F8429F467A080C4F2","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/206/443130429_53bef4127c_o.jpg"}}}},"contextId":"TnaaTKjxWLCcIKOhmxMiNezu"}}
+frontend_1 | 2018-01-31T12:00:59.451499552Z {"@timestamp":"2018-01-31T12:00:59.450+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"ig0BRErBtJanUhkqAKPwjUxc","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"PvNyqRJrVseWrmFAuIg5Zycq"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"ig0BRErBtJanUhkqAKPwjUxc","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"PvNyqRJrVseWrmFAuIg5Zycq"}}},"contextId":"5HjBOmR8FH1nICDxiI8uVAin"}}
+frontend_1 | 2018-01-31T12:00:59.454290973Z {"@timestamp":"2018-01-31T12:00:59.451+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"ecfwqKMpBGtsxToVRHx36XkA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"ecfwqKMpBGtsxToVRHx36XkA","details":{"partnerId":"test-partner-id"}}},"contextId":"5HjBOmR8FH1nICDxiI8uVAin"}}
+frontend_1 | 2018-01-31T12:00:59.455173089Z {"@timestamp":"2018-01-31T12:00:59.454+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"ecfwqKMpBGtsxToVRHx36XkA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"ecfwqKMpBGtsxToVRHx36XkA","details":{"partnerId":"test-partner-id"}}},"contextId":"5HjBOmR8FH1nICDxiI8uVAin"}}
+frontend_1 | 2018-01-31T12:00:59.457478565Z {"@timestamp":"2018-01-31T12:00:59.456+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"ig0BRErBtJanUhkqAKPwjUxc","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"PvNyqRJrVseWrmFAuIg5Zycq"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"ig0BRErBtJanUhkqAKPwjUxc","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"PvNyqRJrVseWrmFAuIg5Zycq"}}},"contextId":"5HjBOmR8FH1nICDxiI8uVAin"}}
+frontend_1 | 2018-01-31T12:00:59.477218047Z {"@timestamp":"2018-01-31T12:00:59.476+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"rysbiXvTferh9Ak1aGade4R4","details":{}},{"name":"IngestionRouting","id":"ecfwqKMpBGtsxToVRHx36XkA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"rysbiXvTferh9Ak1aGade4R4","details":{}}},"contextId":"5HjBOmR8FH1nICDxiI8uVAin"}}
+frontend_1 | 2018-01-31T12:00:59.477759190Z {"@timestamp":"2018-01-31T12:00:59.477+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"rysbiXvTferh9Ak1aGade4R4","details":{}},{"name":"IngestionRouting","id":"ecfwqKMpBGtsxToVRHx36XkA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"rysbiXvTferh9Ak1aGade4R4","details":{}}},"contextId":"5HjBOmR8FH1nICDxiI8uVAin"}}
+frontend_1 | 2018-01-31T12:00:59.478513465Z {"@timestamp":"2018-01-31T12:00:59.478+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"rysbiXvTferh9Ak1aGade4R4","details":{}},{"name":"IngestionRouting","id":"ecfwqKMpBGtsxToVRHx36XkA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"5HjBOmR8FH1nICDxiI8uVAin"}}
+frontend_1 | 2018-01-31T12:00:59.519916970Z {"@timestamp":"2018-01-31T12:00:59.519+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"1Aohm4IDFqbgzhY15rwpAIB0","details":{"message":{"partnerId":"test-partner-id","masterId":"0A9A727DD787805F6264E2287A25EC79188817C1E8BA471F8429F467A080C4F2","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/206/443130429_53bef4127c_o.jpg"}}},{"name":"IngestionRouting","id":"tvQqcVOWay6s_ssnJxSskqf8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(ed5c67a5-dfa3-3fad-2e2d-769abb405f54)"},"contextId":"TnaaTKjxWLCcIKOhmxMiNezu"}}
+frontend_1 | 2018-01-31T12:00:59.550646193Z {"@timestamp":"2018-01-31T12:00:59.549+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"rysbiXvTferh9Ak1aGade4R4","details":{}},{"name":"IngestionRouting","id":"ecfwqKMpBGtsxToVRHx36XkA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"5HjBOmR8FH1nICDxiI8uVAin"}}
+frontend_1 | 2018-01-31T12:00:59.558726404Z {"@timestamp":"2018-01-31T12:00:59.557+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:00.432905310Z {"@timestamp":"2018-01-31T12:01:00.431+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"N7IneqYXISTzjU1JDb4YgtrS","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"WF9rmgm6G1alrtx_uhNJ2HFA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"N7IneqYXISTzjU1JDb4YgtrS","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"WF9rmgm6G1alrtx_uhNJ2HFA"}}},"contextId":"vyEqg_yb1NgdPdWkTfXX68eW"}}
+frontend_1 | 2018-01-31T12:01:00.444162412Z {"@timestamp":"2018-01-31T12:01:00.443+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"f13B8Jqe3AVdxAb7ZzCkWRt1","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"f13B8Jqe3AVdxAb7ZzCkWRt1","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"vyEqg_yb1NgdPdWkTfXX68eW"}}
+frontend_1 | 2018-01-31T12:01:00.444667852Z {"@timestamp":"2018-01-31T12:01:00.444+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"f13B8Jqe3AVdxAb7ZzCkWRt1","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"f13B8Jqe3AVdxAb7ZzCkWRt1","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"vyEqg_yb1NgdPdWkTfXX68eW"}}
+frontend_1 | 2018-01-31T12:01:00.445097491Z {"@timestamp":"2018-01-31T12:01:00.444+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"N7IneqYXISTzjU1JDb4YgtrS","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"WF9rmgm6G1alrtx_uhNJ2HFA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"N7IneqYXISTzjU1JDb4YgtrS","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"WF9rmgm6G1alrtx_uhNJ2HFA"}}},"contextId":"vyEqg_yb1NgdPdWkTfXX68eW"}}
+frontend_1 | 2018-01-31T12:01:00.446970064Z {"@timestamp":"2018-01-31T12:01:00.446+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"k28jwu9d6z2OgJ4VvGjFM3H-","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8235/8388326864_a0222c824a_o.jpg"}}},{"name":"IngestionRouting","id":"f13B8Jqe3AVdxAb7ZzCkWRt1","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"k28jwu9d6z2OgJ4VvGjFM3H-","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8235/8388326864_a0222c824a_o.jpg"}}}},"contextId":"vyEqg_yb1NgdPdWkTfXX68eW"}}
+frontend_1 | 2018-01-31T12:01:00.447965464Z {"@timestamp":"2018-01-31T12:01:00.434+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"e7l2MrVRZjV5e2wfd489cx-J","details":{"endpoint":"GET /health","transactionId":"TjA8ozJayfZXmAQg3K4k6r8J"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"e7l2MrVRZjV5e2wfd489cx-J","details":{"endpoint":"GET /health","transactionId":"TjA8ozJayfZXmAQg3K4k6r8J"}}},"contextId":"CYE4QV19jvXHnzf742xkfswU"}}
+frontend_1 | 2018-01-31T12:01:00.448196700Z {"@timestamp":"2018-01-31T12:01:00.443+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"X-xvprTX_lFhKaoZ3JWN2L9N","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"d5sTTocJUeQh0xsYkqNSNno9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"X-xvprTX_lFhKaoZ3JWN2L9N","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"d5sTTocJUeQh0xsYkqNSNno9"}}},"contextId":"D8XaFQz8t34N381hrCDCv6P5"}}
+frontend_1 | 2018-01-31T12:01:00.448671104Z {"@timestamp":"2018-01-31T12:01:00.448+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"e7l2MrVRZjV5e2wfd489cx-J","details":{"endpoint":"GET /health","transactionId":"TjA8ozJayfZXmAQg3K4k6r8J"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"e7l2MrVRZjV5e2wfd489cx-J","details":{"endpoint":"GET /health","transactionId":"TjA8ozJayfZXmAQg3K4k6r8J"}}},"contextId":"CYE4QV19jvXHnzf742xkfswU"}}
+frontend_1 | 2018-01-31T12:01:00.448885059Z {"@timestamp":"2018-01-31T12:01:00.448+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"wEW0Whk-SoBv1YFaHgdDH1tQ","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"wEW0Whk-SoBv1YFaHgdDH1tQ","details":{"partnerId":"test-partner-id"}}},"contextId":"D8XaFQz8t34N381hrCDCv6P5"}}
+frontend_1 | 2018-01-31T12:01:00.449292685Z {"@timestamp":"2018-01-31T12:01:00.449+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"wEW0Whk-SoBv1YFaHgdDH1tQ","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"wEW0Whk-SoBv1YFaHgdDH1tQ","details":{"partnerId":"test-partner-id"}}},"contextId":"D8XaFQz8t34N381hrCDCv6P5"}}
+frontend_1 | 2018-01-31T12:01:00.449720417Z {"@timestamp":"2018-01-31T12:01:00.449+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"X-xvprTX_lFhKaoZ3JWN2L9N","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"d5sTTocJUeQh0xsYkqNSNno9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"X-xvprTX_lFhKaoZ3JWN2L9N","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"d5sTTocJUeQh0xsYkqNSNno9"}}},"contextId":"D8XaFQz8t34N381hrCDCv6P5"}}
+frontend_1 | 2018-01-31T12:01:00.461536468Z {"@timestamp":"2018-01-31T12:01:00.461+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"k28jwu9d6z2OgJ4VvGjFM3H-","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8235/8388326864_a0222c824a_o.jpg"}}},{"name":"IngestionRouting","id":"f13B8Jqe3AVdxAb7ZzCkWRt1","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"k28jwu9d6z2OgJ4VvGjFM3H-","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8235/8388326864_a0222c824a_o.jpg"}}}},"contextId":"vyEqg_yb1NgdPdWkTfXX68eW"}}
+frontend_1 | 2018-01-31T12:01:00.463032304Z {"@timestamp":"2018-01-31T12:01:00.462+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"1b98Qroe_zPyZqlMdq7mDmgC","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"F1C26306EA1306D91802E73108AD61734F8D35D8CCAE77917716C74B2A76B4FC","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8235/8388326864_a0222c824a_o.jpg"}}},{"name":"IngestionRouting","id":"f13B8Jqe3AVdxAb7ZzCkWRt1","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"1b98Qroe_zPyZqlMdq7mDmgC","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"F1C26306EA1306D91802E73108AD61734F8D35D8CCAE77917716C74B2A76B4FC","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8235/8388326864_a0222c824a_o.jpg"}}}},"contextId":"vyEqg_yb1NgdPdWkTfXX68eW"}}
+frontend_1 | 2018-01-31T12:01:00.473705365Z {"@timestamp":"2018-01-31T12:01:00.471+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"1b98Qroe_zPyZqlMdq7mDmgC","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"F1C26306EA1306D91802E73108AD61734F8D35D8CCAE77917716C74B2A76B4FC","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8235/8388326864_a0222c824a_o.jpg"}}},{"name":"IngestionRouting","id":"f13B8Jqe3AVdxAb7ZzCkWRt1","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"1b98Qroe_zPyZqlMdq7mDmgC","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"F1C26306EA1306D91802E73108AD61734F8D35D8CCAE77917716C74B2A76B4FC","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8235/8388326864_a0222c824a_o.jpg"}}}},"contextId":"vyEqg_yb1NgdPdWkTfXX68eW"}}
+frontend_1 | 2018-01-31T12:01:00.482094947Z {"@timestamp":"2018-01-31T12:01:00.481+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"JKRx7ai9KBFHwFsb6iIEkJeq","details":{}},{"name":"IngestionRouting","id":"wEW0Whk-SoBv1YFaHgdDH1tQ","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"JKRx7ai9KBFHwFsb6iIEkJeq","details":{}}},"contextId":"D8XaFQz8t34N381hrCDCv6P5"}}
+frontend_1 | 2018-01-31T12:01:00.485811624Z {"@timestamp":"2018-01-31T12:01:00.485+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"JKRx7ai9KBFHwFsb6iIEkJeq","details":{}},{"name":"IngestionRouting","id":"wEW0Whk-SoBv1YFaHgdDH1tQ","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"JKRx7ai9KBFHwFsb6iIEkJeq","details":{}}},"contextId":"D8XaFQz8t34N381hrCDCv6P5"}}
+frontend_1 | 2018-01-31T12:01:00.486604993Z {"@timestamp":"2018-01-31T12:01:00.486+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"JKRx7ai9KBFHwFsb6iIEkJeq","details":{}},{"name":"IngestionRouting","id":"wEW0Whk-SoBv1YFaHgdDH1tQ","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"D8XaFQz8t34N381hrCDCv6P5"}}
+frontend_1 | 2018-01-31T12:01:00.542205014Z {"@timestamp":"2018-01-31T12:01:00.541+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"1b98Qroe_zPyZqlMdq7mDmgC","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"F1C26306EA1306D91802E73108AD61734F8D35D8CCAE77917716C74B2A76B4FC","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8235/8388326864_a0222c824a_o.jpg"}}},{"name":"IngestionRouting","id":"f13B8Jqe3AVdxAb7ZzCkWRt1","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(ae7810e5-08c6-f797-33a1-257043b77cda)"},"contextId":"vyEqg_yb1NgdPdWkTfXX68eW"}}
+frontend_1 | 2018-01-31T12:01:00.598950015Z {"@timestamp":"2018-01-31T12:01:00.598+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"JKRx7ai9KBFHwFsb6iIEkJeq","details":{}},{"name":"IngestionRouting","id":"wEW0Whk-SoBv1YFaHgdDH1tQ","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"D8XaFQz8t34N381hrCDCv6P5"}}
+frontend_1 | 2018-01-31T12:01:00.601292346Z {"@timestamp":"2018-01-31T12:01:00.600+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:01.424604862Z {"@timestamp":"2018-01-31T12:01:01.423+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"lFvCkEPIC8fGOjSzsoqVUFrp","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"lMaaDAeVgvxfl2FjLms01d8A"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"lFvCkEPIC8fGOjSzsoqVUFrp","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"lMaaDAeVgvxfl2FjLms01d8A"}}},"contextId":"9LhLqK5HcJ6fv52Sl9suzCC1"}}
+frontend_1 | 2018-01-31T12:01:01.425440059Z {"@timestamp":"2018-01-31T12:01:01.424+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"NRBe1FOOw2-zZzja_8eciiOh","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"NRBe1FOOw2-zZzja_8eciiOh","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"9LhLqK5HcJ6fv52Sl9suzCC1"}}
+frontend_1 | 2018-01-31T12:01:01.426280703Z {"@timestamp":"2018-01-31T12:01:01.425+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"NRBe1FOOw2-zZzja_8eciiOh","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"NRBe1FOOw2-zZzja_8eciiOh","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"9LhLqK5HcJ6fv52Sl9suzCC1"}}
+frontend_1 | 2018-01-31T12:01:01.427064955Z {"@timestamp":"2018-01-31T12:01:01.426+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"lFvCkEPIC8fGOjSzsoqVUFrp","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"lMaaDAeVgvxfl2FjLms01d8A"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"lFvCkEPIC8fGOjSzsoqVUFrp","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"lMaaDAeVgvxfl2FjLms01d8A"}}},"contextId":"9LhLqK5HcJ6fv52Sl9suzCC1"}}
+frontend_1 | 2018-01-31T12:01:01.429255027Z {"@timestamp":"2018-01-31T12:01:01.428+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"5YkL6XoZ-8b8_GERg7Uw6irs","details":{"request":{"client":"test","metadata":{},"reference":"https://c4.staticflickr.com/7/6079/6080932705_bbfe51af38_o.jpg"}}},{"name":"IngestionRouting","id":"NRBe1FOOw2-zZzja_8eciiOh","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"5YkL6XoZ-8b8_GERg7Uw6irs","details":{"request":{"client":"test","metadata":{},"reference":"https://c4.staticflickr.com/7/6079/6080932705_bbfe51af38_o.jpg"}}}},"contextId":"9LhLqK5HcJ6fv52Sl9suzCC1"}}
+frontend_1 | 2018-01-31T12:01:01.431101817Z {"@timestamp":"2018-01-31T12:01:01.430+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"5YkL6XoZ-8b8_GERg7Uw6irs","details":{"request":{"client":"test","metadata":{},"reference":"https://c4.staticflickr.com/7/6079/6080932705_bbfe51af38_o.jpg"}}},{"name":"IngestionRouting","id":"NRBe1FOOw2-zZzja_8eciiOh","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"5YkL6XoZ-8b8_GERg7Uw6irs","details":{"request":{"client":"test","metadata":{},"reference":"https://c4.staticflickr.com/7/6079/6080932705_bbfe51af38_o.jpg"}}}},"contextId":"9LhLqK5HcJ6fv52Sl9suzCC1"}}
+frontend_1 | 2018-01-31T12:01:01.431701199Z {"@timestamp":"2018-01-31T12:01:01.431+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"R-Z_1LFctn_Zu1F1F9grJlqh","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"9D1A38AC981FC4B938D3BFCD6C9C4D7D983A37E899714718D4CFC4A5113ADEF2","client":"test","metadata":{},"reference":"https://c4.staticflickr.com/7/6079/6080932705_bbfe51af38_o.jpg"}}},{"name":"IngestionRouting","id":"NRBe1FOOw2-zZzja_8eciiOh","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"R-Z_1LFctn_Zu1F1F9grJlqh","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"9D1A38AC981FC4B938D3BFCD6C9C4D7D983A37E899714718D4CFC4A5113ADEF2","client":"test","metadata":{},"reference":"https://c4.staticflickr.com/7/6079/6080932705_bbfe51af38_o.jpg"}}}},"contextId":"9LhLqK5HcJ6fv52Sl9suzCC1"}}
+frontend_1 | 2018-01-31T12:01:01.432296784Z {"@timestamp":"2018-01-31T12:01:01.431+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"R-Z_1LFctn_Zu1F1F9grJlqh","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"9D1A38AC981FC4B938D3BFCD6C9C4D7D983A37E899714718D4CFC4A5113ADEF2","client":"test","metadata":{},"reference":"https://c4.staticflickr.com/7/6079/6080932705_bbfe51af38_o.jpg"}}},{"name":"IngestionRouting","id":"NRBe1FOOw2-zZzja_8eciiOh","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"R-Z_1LFctn_Zu1F1F9grJlqh","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"9D1A38AC981FC4B938D3BFCD6C9C4D7D983A37E899714718D4CFC4A5113ADEF2","client":"test","metadata":{},"reference":"https://c4.staticflickr.com/7/6079/6080932705_bbfe51af38_o.jpg"}}}},"contextId":"9LhLqK5HcJ6fv52Sl9suzCC1"}}
+frontend_1 | 2018-01-31T12:01:01.443360963Z {"@timestamp":"2018-01-31T12:01:01.442+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"iG85c2NSrJ1Zq8ilFjCcjGig","details":{"endpoint":"GET /health","transactionId":"WFvt39w3T_PPFOKs9jAUN7kD"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"iG85c2NSrJ1Zq8ilFjCcjGig","details":{"endpoint":"GET /health","transactionId":"WFvt39w3T_PPFOKs9jAUN7kD"}}},"contextId":"wHtJ4KWM13FxRu5KwQ6r4UKa"}}
+frontend_1 | 2018-01-31T12:01:01.443782032Z {"@timestamp":"2018-01-31T12:01:01.443+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"iG85c2NSrJ1Zq8ilFjCcjGig","details":{"endpoint":"GET /health","transactionId":"WFvt39w3T_PPFOKs9jAUN7kD"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"iG85c2NSrJ1Zq8ilFjCcjGig","details":{"endpoint":"GET /health","transactionId":"WFvt39w3T_PPFOKs9jAUN7kD"}}},"contextId":"wHtJ4KWM13FxRu5KwQ6r4UKa"}}
+frontend_1 | 2018-01-31T12:01:01.445010951Z {"@timestamp":"2018-01-31T12:01:01.444+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"mE6M9Yo0aKoQT-uK7FnhnTks","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"EFkWOREUJDEx60WrBFgK_k_d"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"mE6M9Yo0aKoQT-uK7FnhnTks","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"EFkWOREUJDEx60WrBFgK_k_d"}}},"contextId":"YugdYiq7VzStj4qm6bohzw1p"}}
+frontend_1 | 2018-01-31T12:01:01.445765133Z {"@timestamp":"2018-01-31T12:01:01.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"kBV_LnbD1LNwIUoXgwbDEdMj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"kBV_LnbD1LNwIUoXgwbDEdMj","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"YugdYiq7VzStj4qm6bohzw1p"}}
+frontend_1 | 2018-01-31T12:01:01.446243068Z {"@timestamp":"2018-01-31T12:01:01.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"kBV_LnbD1LNwIUoXgwbDEdMj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"kBV_LnbD1LNwIUoXgwbDEdMj","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"YugdYiq7VzStj4qm6bohzw1p"}}
+frontend_1 | 2018-01-31T12:01:01.449010519Z {"@timestamp":"2018-01-31T12:01:01.448+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"mE6M9Yo0aKoQT-uK7FnhnTks","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"EFkWOREUJDEx60WrBFgK_k_d"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"mE6M9Yo0aKoQT-uK7FnhnTks","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"EFkWOREUJDEx60WrBFgK_k_d"}}},"contextId":"YugdYiq7VzStj4qm6bohzw1p"}}
+frontend_1 | 2018-01-31T12:01:01.458641067Z {"@timestamp":"2018-01-31T12:01:01.457+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"3Vdqs9wrI7Xmd3k9vajvTLpP","details":{}},{"name":"IngestionRouting","id":"kBV_LnbD1LNwIUoXgwbDEdMj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"3Vdqs9wrI7Xmd3k9vajvTLpP","details":{}}},"contextId":"YugdYiq7VzStj4qm6bohzw1p"}}
+frontend_1 | 2018-01-31T12:01:01.459017548Z {"@timestamp":"2018-01-31T12:01:01.458+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"3Vdqs9wrI7Xmd3k9vajvTLpP","details":{}},{"name":"IngestionRouting","id":"kBV_LnbD1LNwIUoXgwbDEdMj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"3Vdqs9wrI7Xmd3k9vajvTLpP","details":{}}},"contextId":"YugdYiq7VzStj4qm6bohzw1p"}}
+frontend_1 | 2018-01-31T12:01:01.459752133Z {"@timestamp":"2018-01-31T12:01:01.459+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"3Vdqs9wrI7Xmd3k9vajvTLpP","details":{}},{"name":"IngestionRouting","id":"kBV_LnbD1LNwIUoXgwbDEdMj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"YugdYiq7VzStj4qm6bohzw1p"}}
+frontend_1 | 2018-01-31T12:01:01.500901322Z {"@timestamp":"2018-01-31T12:01:01.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"R-Z_1LFctn_Zu1F1F9grJlqh","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"9D1A38AC981FC4B938D3BFCD6C9C4D7D983A37E899714718D4CFC4A5113ADEF2","client":"test","metadata":{},"reference":"https://c4.staticflickr.com/7/6079/6080932705_bbfe51af38_o.jpg"}}},{"name":"IngestionRouting","id":"NRBe1FOOw2-zZzja_8eciiOh","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(55291e9c-f9c2-dc68-5817-e4845cdffbcb)"},"contextId":"9LhLqK5HcJ6fv52Sl9suzCC1"}}
+frontend_1 | 2018-01-31T12:01:01.579162696Z {"@timestamp":"2018-01-31T12:01:01.578+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"3Vdqs9wrI7Xmd3k9vajvTLpP","details":{}},{"name":"IngestionRouting","id":"kBV_LnbD1LNwIUoXgwbDEdMj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"YugdYiq7VzStj4qm6bohzw1p"}}
+frontend_1 | 2018-01-31T12:01:01.580851280Z {"@timestamp":"2018-01-31T12:01:01.580+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:03.423551339Z {"@timestamp":"2018-01-31T12:01:03.422+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"m7gGlPF8i7d8PZJZH97l-BjL","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"odMuMjlXalKboIptgUUVJTm1"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"m7gGlPF8i7d8PZJZH97l-BjL","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"odMuMjlXalKboIptgUUVJTm1"}}},"contextId":"_m9V2Uj6I0PHV3rGaZO_806r"}}
+frontend_1 | 2018-01-31T12:01:03.425731599Z {"@timestamp":"2018-01-31T12:01:03.423+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"UhW5IsopTfHJ6LAqCiuSlZZ7","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"UhW5IsopTfHJ6LAqCiuSlZZ7","details":{"partnerId":"test-partner-id"}}},"contextId":"_m9V2Uj6I0PHV3rGaZO_806r"}}
+frontend_1 | 2018-01-31T12:01:03.428215674Z {"@timestamp":"2018-01-31T12:01:03.426+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"UhW5IsopTfHJ6LAqCiuSlZZ7","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"UhW5IsopTfHJ6LAqCiuSlZZ7","details":{"partnerId":"test-partner-id"}}},"contextId":"_m9V2Uj6I0PHV3rGaZO_806r"}}
+frontend_1 | 2018-01-31T12:01:03.428249203Z {"@timestamp":"2018-01-31T12:01:03.427+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"m7gGlPF8i7d8PZJZH97l-BjL","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"odMuMjlXalKboIptgUUVJTm1"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"m7gGlPF8i7d8PZJZH97l-BjL","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"odMuMjlXalKboIptgUUVJTm1"}}},"contextId":"_m9V2Uj6I0PHV3rGaZO_806r"}}
+frontend_1 | 2018-01-31T12:01:03.430601406Z {"@timestamp":"2018-01-31T12:01:03.430+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"b8VVjAzSDabrQDkLkK4e9LEH","details":{"request":{"client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4063/4253572027_112873e812_o.jpg"}}},{"name":"IngestionRouting","id":"UhW5IsopTfHJ6LAqCiuSlZZ7","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"b8VVjAzSDabrQDkLkK4e9LEH","details":{"request":{"client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4063/4253572027_112873e812_o.jpg"}}}},"contextId":"_m9V2Uj6I0PHV3rGaZO_806r"}}
+frontend_1 | 2018-01-31T12:01:03.432111611Z {"@timestamp":"2018-01-31T12:01:03.431+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"b8VVjAzSDabrQDkLkK4e9LEH","details":{"request":{"client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4063/4253572027_112873e812_o.jpg"}}},{"name":"IngestionRouting","id":"UhW5IsopTfHJ6LAqCiuSlZZ7","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"b8VVjAzSDabrQDkLkK4e9LEH","details":{"request":{"client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4063/4253572027_112873e812_o.jpg"}}}},"contextId":"_m9V2Uj6I0PHV3rGaZO_806r"}}
+frontend_1 | 2018-01-31T12:01:03.432780524Z {"@timestamp":"2018-01-31T12:01:03.432+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"1BP57ZZ1mXN1gczZdGFFX0t-","details":{"message":{"partnerId":"test-partner-id","masterId":"9F50E82A348266786E9C49A12E486072F4E396386E33F49890B583BA35733399","client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4063/4253572027_112873e812_o.jpg"}}},{"name":"IngestionRouting","id":"UhW5IsopTfHJ6LAqCiuSlZZ7","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"1BP57ZZ1mXN1gczZdGFFX0t-","details":{"message":{"partnerId":"test-partner-id","masterId":"9F50E82A348266786E9C49A12E486072F4E396386E33F49890B583BA35733399","client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4063/4253572027_112873e812_o.jpg"}}}},"contextId":"_m9V2Uj6I0PHV3rGaZO_806r"}}
+frontend_1 | 2018-01-31T12:01:03.433811690Z {"@timestamp":"2018-01-31T12:01:03.433+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"1BP57ZZ1mXN1gczZdGFFX0t-","details":{"message":{"partnerId":"test-partner-id","masterId":"9F50E82A348266786E9C49A12E486072F4E396386E33F49890B583BA35733399","client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4063/4253572027_112873e812_o.jpg"}}},{"name":"IngestionRouting","id":"UhW5IsopTfHJ6LAqCiuSlZZ7","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"1BP57ZZ1mXN1gczZdGFFX0t-","details":{"message":{"partnerId":"test-partner-id","masterId":"9F50E82A348266786E9C49A12E486072F4E396386E33F49890B583BA35733399","client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4063/4253572027_112873e812_o.jpg"}}}},"contextId":"_m9V2Uj6I0PHV3rGaZO_806r"}}
+frontend_1 | 2018-01-31T12:01:03.434368754Z {"@timestamp":"2018-01-31T12:01:03.433+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"MAwxqrbRuutTpVP3hTYY4Uzp","details":{"endpoint":"GET /health","transactionId":"iTmlkG_zpEmA4eK6EiRI4GDy"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"MAwxqrbRuutTpVP3hTYY4Uzp","details":{"endpoint":"GET /health","transactionId":"iTmlkG_zpEmA4eK6EiRI4GDy"}}},"contextId":"940ZwzHXYjMFxxJdQfbO_XlK"}}
+frontend_1 | 2018-01-31T12:01:03.435056286Z {"@timestamp":"2018-01-31T12:01:03.434+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"MAwxqrbRuutTpVP3hTYY4Uzp","details":{"endpoint":"GET /health","transactionId":"iTmlkG_zpEmA4eK6EiRI4GDy"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"MAwxqrbRuutTpVP3hTYY4Uzp","details":{"endpoint":"GET /health","transactionId":"iTmlkG_zpEmA4eK6EiRI4GDy"}}},"contextId":"940ZwzHXYjMFxxJdQfbO_XlK"}}
+frontend_1 | 2018-01-31T12:01:03.447731235Z {"@timestamp":"2018-01-31T12:01:03.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"miBNaD9xth_DQ_JAni5pJfTU","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"uDmbixdDxHfUFv16X7BP64Eg"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"miBNaD9xth_DQ_JAni5pJfTU","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"uDmbixdDxHfUFv16X7BP64Eg"}}},"contextId":"drXbE5FrdzgPMaqHM-nJO4aR"}}
+frontend_1 | 2018-01-31T12:01:03.458057841Z {"@timestamp":"2018-01-31T12:01:03.456+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"8NHe5zlX7D50ju6Z3oxVOta8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"8NHe5zlX7D50ju6Z3oxVOta8","details":{"partnerId":"test-partner-id"}}},"contextId":"drXbE5FrdzgPMaqHM-nJO4aR"}}
+frontend_1 | 2018-01-31T12:01:03.460034536Z {"@timestamp":"2018-01-31T12:01:03.459+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"8NHe5zlX7D50ju6Z3oxVOta8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"8NHe5zlX7D50ju6Z3oxVOta8","details":{"partnerId":"test-partner-id"}}},"contextId":"drXbE5FrdzgPMaqHM-nJO4aR"}}
+frontend_1 | 2018-01-31T12:01:03.461056329Z {"@timestamp":"2018-01-31T12:01:03.460+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"miBNaD9xth_DQ_JAni5pJfTU","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"uDmbixdDxHfUFv16X7BP64Eg"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"miBNaD9xth_DQ_JAni5pJfTU","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"uDmbixdDxHfUFv16X7BP64Eg"}}},"contextId":"drXbE5FrdzgPMaqHM-nJO4aR"}}
+frontend_1 | 2018-01-31T12:01:03.492962801Z {"@timestamp":"2018-01-31T12:01:03.492+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"BROPjhPkgps_vZPjpmvDFtje","details":{}},{"name":"IngestionRouting","id":"8NHe5zlX7D50ju6Z3oxVOta8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"BROPjhPkgps_vZPjpmvDFtje","details":{}}},"contextId":"drXbE5FrdzgPMaqHM-nJO4aR"}}
+frontend_1 | 2018-01-31T12:01:03.493319647Z {"@timestamp":"2018-01-31T12:01:03.493+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"BROPjhPkgps_vZPjpmvDFtje","details":{}},{"name":"IngestionRouting","id":"8NHe5zlX7D50ju6Z3oxVOta8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"BROPjhPkgps_vZPjpmvDFtje","details":{}}},"contextId":"drXbE5FrdzgPMaqHM-nJO4aR"}}
+frontend_1 | 2018-01-31T12:01:03.500198661Z {"@timestamp":"2018-01-31T12:01:03.499+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"BROPjhPkgps_vZPjpmvDFtje","details":{}},{"name":"IngestionRouting","id":"8NHe5zlX7D50ju6Z3oxVOta8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"drXbE5FrdzgPMaqHM-nJO4aR"}}
+frontend_1 | 2018-01-31T12:01:03.541874826Z {"@timestamp":"2018-01-31T12:01:03.540+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"1BP57ZZ1mXN1gczZdGFFX0t-","details":{"message":{"partnerId":"test-partner-id","masterId":"9F50E82A348266786E9C49A12E486072F4E396386E33F49890B583BA35733399","client":"test","metadata":{},"reference":"https://farm3.staticflickr.com/4063/4253572027_112873e812_o.jpg"}}},{"name":"IngestionRouting","id":"UhW5IsopTfHJ6LAqCiuSlZZ7","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(4be4bad7-75d8-8f0c-813e-f693c2275d32)"},"contextId":"_m9V2Uj6I0PHV3rGaZO_806r"}}
+frontend_1 | 2018-01-31T12:01:03.569060596Z {"@timestamp":"2018-01-31T12:01:03.568+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"BROPjhPkgps_vZPjpmvDFtje","details":{}},{"name":"IngestionRouting","id":"8NHe5zlX7D50ju6Z3oxVOta8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"drXbE5FrdzgPMaqHM-nJO4aR"}}
+frontend_1 | 2018-01-31T12:01:03.571580180Z {"@timestamp":"2018-01-31T12:01:03.570+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:04.423449069Z {"@timestamp":"2018-01-31T12:01:04.422+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"lCYDPin6EMmFkt0ptklgD6rh","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"uXr6pSgTWNWHnxQAJY9NCdJ9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"lCYDPin6EMmFkt0ptklgD6rh","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"uXr6pSgTWNWHnxQAJY9NCdJ9"}}},"contextId":"jS06Y6H1n4oozRFFWGzKDhYi"}}
+frontend_1 | 2018-01-31T12:01:04.429150115Z {"@timestamp":"2018-01-31T12:01:04.427+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"vVWJCIsq9gpHkY56t1sFTQe3","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"vVWJCIsq9gpHkY56t1sFTQe3","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"jS06Y6H1n4oozRFFWGzKDhYi"}}
+frontend_1 | 2018-01-31T12:01:04.431626304Z {"@timestamp":"2018-01-31T12:01:04.431+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"uSnbz9Y7QqxrILojd55-oc2v","details":{"endpoint":"GET /health","transactionId":"ykuOzF0h75ZJuvlcXyVxLvKq"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"uSnbz9Y7QqxrILojd55-oc2v","details":{"endpoint":"GET /health","transactionId":"ykuOzF0h75ZJuvlcXyVxLvKq"}}},"contextId":"vi_d0RRByOS0b4un4Ap_l0Ib"}}
+frontend_1 | 2018-01-31T12:01:04.432241721Z {"@timestamp":"2018-01-31T12:01:04.431+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"uSnbz9Y7QqxrILojd55-oc2v","details":{"endpoint":"GET /health","transactionId":"ykuOzF0h75ZJuvlcXyVxLvKq"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"uSnbz9Y7QqxrILojd55-oc2v","details":{"endpoint":"GET /health","transactionId":"ykuOzF0h75ZJuvlcXyVxLvKq"}}},"contextId":"vi_d0RRByOS0b4un4Ap_l0Ib"}}
+frontend_1 | 2018-01-31T12:01:04.434276740Z {"@timestamp":"2018-01-31T12:01:04.433+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"07nRjlYixHNzjKULLxk_g5fB","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"bCYXyEDN9QYG_0KYdo12HBJc"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"07nRjlYixHNzjKULLxk_g5fB","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"bCYXyEDN9QYG_0KYdo12HBJc"}}},"contextId":"2evncnOw2Ay8RrTPEYEzoUlC"}}
+frontend_1 | 2018-01-31T12:01:04.438824054Z {"@timestamp":"2018-01-31T12:01:04.438+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"gpHADmMySJq-NMMT5_LqTKGh","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"gpHADmMySJq-NMMT5_LqTKGh","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"2evncnOw2Ay8RrTPEYEzoUlC"}}
+frontend_1 | 2018-01-31T12:01:04.440171153Z {"@timestamp":"2018-01-31T12:01:04.438+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"gpHADmMySJq-NMMT5_LqTKGh","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"gpHADmMySJq-NMMT5_LqTKGh","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"2evncnOw2Ay8RrTPEYEzoUlC"}}
+frontend_1 | 2018-01-31T12:01:04.440767530Z {"@timestamp":"2018-01-31T12:01:04.440+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"07nRjlYixHNzjKULLxk_g5fB","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"bCYXyEDN9QYG_0KYdo12HBJc"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"07nRjlYixHNzjKULLxk_g5fB","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"bCYXyEDN9QYG_0KYdo12HBJc"}}},"contextId":"2evncnOw2Ay8RrTPEYEzoUlC"}}
+frontend_1 | 2018-01-31T12:01:04.441318821Z {"@timestamp":"2018-01-31T12:01:04.429+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"vVWJCIsq9gpHkY56t1sFTQe3","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"vVWJCIsq9gpHkY56t1sFTQe3","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"jS06Y6H1n4oozRFFWGzKDhYi"}}
+frontend_1 | 2018-01-31T12:01:04.445339446Z {"@timestamp":"2018-01-31T12:01:04.444+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"lCYDPin6EMmFkt0ptklgD6rh","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"uXr6pSgTWNWHnxQAJY9NCdJ9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"lCYDPin6EMmFkt0ptklgD6rh","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"uXr6pSgTWNWHnxQAJY9NCdJ9"}}},"contextId":"jS06Y6H1n4oozRFFWGzKDhYi"}}
+frontend_1 | 2018-01-31T12:01:04.446991755Z {"@timestamp":"2018-01-31T12:01:04.446+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"8FBuK7SPMjrVtp_vdAzmQ9gb","details":{"request":{"client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/4005/4528780542_1c01e0f271_o.jpg"}}},{"name":"IngestionRouting","id":"vVWJCIsq9gpHkY56t1sFTQe3","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"8FBuK7SPMjrVtp_vdAzmQ9gb","details":{"request":{"client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/4005/4528780542_1c01e0f271_o.jpg"}}}},"contextId":"jS06Y6H1n4oozRFFWGzKDhYi"}}
+frontend_1 | 2018-01-31T12:01:04.449157407Z {"@timestamp":"2018-01-31T12:01:04.448+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"8FBuK7SPMjrVtp_vdAzmQ9gb","details":{"request":{"client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/4005/4528780542_1c01e0f271_o.jpg"}}},{"name":"IngestionRouting","id":"vVWJCIsq9gpHkY56t1sFTQe3","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"8FBuK7SPMjrVtp_vdAzmQ9gb","details":{"request":{"client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/4005/4528780542_1c01e0f271_o.jpg"}}}},"contextId":"jS06Y6H1n4oozRFFWGzKDhYi"}}
+frontend_1 | 2018-01-31T12:01:04.449675249Z {"@timestamp":"2018-01-31T12:01:04.449+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"PBe_TC4h-rE5ppHfqVDc541Q","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"68CE39DEF6B138FBD293C010982078CB8B860C213FFC3DAEE320B70FC4DF16C6","client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/4005/4528780542_1c01e0f271_o.jpg"}}},{"name":"IngestionRouting","id":"vVWJCIsq9gpHkY56t1sFTQe3","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"PBe_TC4h-rE5ppHfqVDc541Q","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"68CE39DEF6B138FBD293C010982078CB8B860C213FFC3DAEE320B70FC4DF16C6","client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/4005/4528780542_1c01e0f271_o.jpg"}}}},"contextId":"jS06Y6H1n4oozRFFWGzKDhYi"}}
+frontend_1 | 2018-01-31T12:01:04.450287913Z {"@timestamp":"2018-01-31T12:01:04.449+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"PBe_TC4h-rE5ppHfqVDc541Q","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"68CE39DEF6B138FBD293C010982078CB8B860C213FFC3DAEE320B70FC4DF16C6","client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/4005/4528780542_1c01e0f271_o.jpg"}}},{"name":"IngestionRouting","id":"vVWJCIsq9gpHkY56t1sFTQe3","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"PBe_TC4h-rE5ppHfqVDc541Q","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"68CE39DEF6B138FBD293C010982078CB8B860C213FFC3DAEE320B70FC4DF16C6","client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/4005/4528780542_1c01e0f271_o.jpg"}}}},"contextId":"jS06Y6H1n4oozRFFWGzKDhYi"}}
+frontend_1 | 2018-01-31T12:01:04.455864642Z {"@timestamp":"2018-01-31T12:01:04.455+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"W1aMbYWlEd2APgEMqPP23wf9","details":{}},{"name":"IngestionRouting","id":"gpHADmMySJq-NMMT5_LqTKGh","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"W1aMbYWlEd2APgEMqPP23wf9","details":{}}},"contextId":"2evncnOw2Ay8RrTPEYEzoUlC"}}
+frontend_1 | 2018-01-31T12:01:04.456179192Z {"@timestamp":"2018-01-31T12:01:04.455+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"W1aMbYWlEd2APgEMqPP23wf9","details":{}},{"name":"IngestionRouting","id":"gpHADmMySJq-NMMT5_LqTKGh","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"W1aMbYWlEd2APgEMqPP23wf9","details":{}}},"contextId":"2evncnOw2Ay8RrTPEYEzoUlC"}}
+frontend_1 | 2018-01-31T12:01:04.456711584Z {"@timestamp":"2018-01-31T12:01:04.456+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"W1aMbYWlEd2APgEMqPP23wf9","details":{}},{"name":"IngestionRouting","id":"gpHADmMySJq-NMMT5_LqTKGh","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"2evncnOw2Ay8RrTPEYEzoUlC"}}
+frontend_1 | 2018-01-31T12:01:04.530685101Z {"@timestamp":"2018-01-31T12:01:04.530+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"PBe_TC4h-rE5ppHfqVDc541Q","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"68CE39DEF6B138FBD293C010982078CB8B860C213FFC3DAEE320B70FC4DF16C6","client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/4005/4528780542_1c01e0f271_o.jpg"}}},{"name":"IngestionRouting","id":"vVWJCIsq9gpHkY56t1sFTQe3","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(fe959271-b7bf-22bc-8cc2-4f1078fd4c1b)"},"contextId":"jS06Y6H1n4oozRFFWGzKDhYi"}}
+frontend_1 | 2018-01-31T12:01:04.539709406Z {"@timestamp":"2018-01-31T12:01:04.538+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"W1aMbYWlEd2APgEMqPP23wf9","details":{}},{"name":"IngestionRouting","id":"gpHADmMySJq-NMMT5_LqTKGh","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"2evncnOw2Ay8RrTPEYEzoUlC"}}
+frontend_1 | 2018-01-31T12:01:04.543567565Z {"@timestamp":"2018-01-31T12:01:04.542+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:05.425891368Z {"@timestamp":"2018-01-31T12:01:05.425+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"PcI4kOva6Aa9zW0TR9X9MzwY","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"bkR1zCLSqTc3O3v5vpzXCrhZ"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"PcI4kOva6Aa9zW0TR9X9MzwY","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"bkR1zCLSqTc3O3v5vpzXCrhZ"}}},"contextId":"-JETA84QgSaA4-m5HOZ0jp_g"}}
+frontend_1 | 2018-01-31T12:01:05.426534578Z {"@timestamp":"2018-01-31T12:01:05.425+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"00aQw0ErSAVqHdIlshfTDIdd","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"00aQw0ErSAVqHdIlshfTDIdd","details":{"partnerId":"test-partner-id"}}},"contextId":"-JETA84QgSaA4-m5HOZ0jp_g"}}
+frontend_1 | 2018-01-31T12:01:05.427375249Z {"@timestamp":"2018-01-31T12:01:05.426+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"00aQw0ErSAVqHdIlshfTDIdd","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"00aQw0ErSAVqHdIlshfTDIdd","details":{"partnerId":"test-partner-id"}}},"contextId":"-JETA84QgSaA4-m5HOZ0jp_g"}}
+frontend_1 | 2018-01-31T12:01:05.428718294Z {"@timestamp":"2018-01-31T12:01:05.427+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"49kvFKkQCAKhfAds5UOfFydG","details":{"endpoint":"GET /health","transactionId":"M7Ii7psJy5gcNt0i4TBet7ZJ"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"49kvFKkQCAKhfAds5UOfFydG","details":{"endpoint":"GET /health","transactionId":"M7Ii7psJy5gcNt0i4TBet7ZJ"}}},"contextId":"9IV3vXpUbYnNGns5snzgWb78"}}
+frontend_1 | 2018-01-31T12:01:05.429481439Z {"@timestamp":"2018-01-31T12:01:05.428+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"49kvFKkQCAKhfAds5UOfFydG","details":{"endpoint":"GET /health","transactionId":"M7Ii7psJy5gcNt0i4TBet7ZJ"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"49kvFKkQCAKhfAds5UOfFydG","details":{"endpoint":"GET /health","transactionId":"M7Ii7psJy5gcNt0i4TBet7ZJ"}}},"contextId":"9IV3vXpUbYnNGns5snzgWb78"}}
+frontend_1 | 2018-01-31T12:01:05.429523836Z {"@timestamp":"2018-01-31T12:01:05.427+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"PcI4kOva6Aa9zW0TR9X9MzwY","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"bkR1zCLSqTc3O3v5vpzXCrhZ"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"PcI4kOva6Aa9zW0TR9X9MzwY","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"bkR1zCLSqTc3O3v5vpzXCrhZ"}}},"contextId":"-JETA84QgSaA4-m5HOZ0jp_g"}}
+frontend_1 | 2018-01-31T12:01:05.432394574Z {"@timestamp":"2018-01-31T12:01:05.431+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"CoBTIL81Zt8Rl8918C50t4AR","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2852/10024631016_8b8553510c_o.jpg"}}},{"name":"IngestionRouting","id":"00aQw0ErSAVqHdIlshfTDIdd","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"CoBTIL81Zt8Rl8918C50t4AR","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2852/10024631016_8b8553510c_o.jpg"}}}},"contextId":"-JETA84QgSaA4-m5HOZ0jp_g"}}
+frontend_1 | 2018-01-31T12:01:05.433910241Z {"@timestamp":"2018-01-31T12:01:05.433+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"CoBTIL81Zt8Rl8918C50t4AR","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2852/10024631016_8b8553510c_o.jpg"}}},{"name":"IngestionRouting","id":"00aQw0ErSAVqHdIlshfTDIdd","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"CoBTIL81Zt8Rl8918C50t4AR","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2852/10024631016_8b8553510c_o.jpg"}}}},"contextId":"-JETA84QgSaA4-m5HOZ0jp_g"}}
+frontend_1 | 2018-01-31T12:01:05.435076659Z {"@timestamp":"2018-01-31T12:01:05.434+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"FqX_XYWS9oGoKbCmJXt8LI36","details":{"message":{"partnerId":"test-partner-id","masterId":"0CCD8D9BA3EC49FE21E0B48AE8CC31182F1AEAB3651CABBC85535C15A982D55F","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2852/10024631016_8b8553510c_o.jpg"}}},{"name":"IngestionRouting","id":"00aQw0ErSAVqHdIlshfTDIdd","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"FqX_XYWS9oGoKbCmJXt8LI36","details":{"message":{"partnerId":"test-partner-id","masterId":"0CCD8D9BA3EC49FE21E0B48AE8CC31182F1AEAB3651CABBC85535C15A982D55F","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2852/10024631016_8b8553510c_o.jpg"}}}},"contextId":"-JETA84QgSaA4-m5HOZ0jp_g"}}
+frontend_1 | 2018-01-31T12:01:05.440401315Z {"@timestamp":"2018-01-31T12:01:05.435+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"FqX_XYWS9oGoKbCmJXt8LI36","details":{"message":{"partnerId":"test-partner-id","masterId":"0CCD8D9BA3EC49FE21E0B48AE8CC31182F1AEAB3651CABBC85535C15A982D55F","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2852/10024631016_8b8553510c_o.jpg"}}},{"name":"IngestionRouting","id":"00aQw0ErSAVqHdIlshfTDIdd","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"FqX_XYWS9oGoKbCmJXt8LI36","details":{"message":{"partnerId":"test-partner-id","masterId":"0CCD8D9BA3EC49FE21E0B48AE8CC31182F1AEAB3651CABBC85535C15A982D55F","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2852/10024631016_8b8553510c_o.jpg"}}}},"contextId":"-JETA84QgSaA4-m5HOZ0jp_g"}}
+frontend_1 | 2018-01-31T12:01:05.441652099Z {"@timestamp":"2018-01-31T12:01:05.441+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"1Hkf_cBnLVgDrRPUlyfL1m88","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"YU15qiMd6F0yfd0IzQSO1u1r"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"1Hkf_cBnLVgDrRPUlyfL1m88","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"YU15qiMd6F0yfd0IzQSO1u1r"}}},"contextId":"6GuepnlRS8We6p6jHmU-Ux2J"}}
+frontend_1 | 2018-01-31T12:01:05.442453913Z {"@timestamp":"2018-01-31T12:01:05.441+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"O0wPnvTsierSlRLwbD2QYA_L","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"O0wPnvTsierSlRLwbD2QYA_L","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"6GuepnlRS8We6p6jHmU-Ux2J"}}
+frontend_1 | 2018-01-31T12:01:05.448121174Z {"@timestamp":"2018-01-31T12:01:05.447+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"O0wPnvTsierSlRLwbD2QYA_L","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"O0wPnvTsierSlRLwbD2QYA_L","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"6GuepnlRS8We6p6jHmU-Ux2J"}}
+frontend_1 | 2018-01-31T12:01:05.449801822Z {"@timestamp":"2018-01-31T12:01:05.448+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"1Hkf_cBnLVgDrRPUlyfL1m88","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"YU15qiMd6F0yfd0IzQSO1u1r"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"1Hkf_cBnLVgDrRPUlyfL1m88","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"YU15qiMd6F0yfd0IzQSO1u1r"}}},"contextId":"6GuepnlRS8We6p6jHmU-Ux2J"}}
+frontend_1 | 2018-01-31T12:01:05.465221505Z {"@timestamp":"2018-01-31T12:01:05.464+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"mBvKeZfdeqxKOPlshpyK4cGW","details":{}},{"name":"IngestionRouting","id":"O0wPnvTsierSlRLwbD2QYA_L","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"mBvKeZfdeqxKOPlshpyK4cGW","details":{}}},"contextId":"6GuepnlRS8We6p6jHmU-Ux2J"}}
+frontend_1 | 2018-01-31T12:01:05.467756591Z {"@timestamp":"2018-01-31T12:01:05.467+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"mBvKeZfdeqxKOPlshpyK4cGW","details":{}},{"name":"IngestionRouting","id":"O0wPnvTsierSlRLwbD2QYA_L","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"mBvKeZfdeqxKOPlshpyK4cGW","details":{}}},"contextId":"6GuepnlRS8We6p6jHmU-Ux2J"}}
+frontend_1 | 2018-01-31T12:01:05.468404992Z {"@timestamp":"2018-01-31T12:01:05.468+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"mBvKeZfdeqxKOPlshpyK4cGW","details":{}},{"name":"IngestionRouting","id":"O0wPnvTsierSlRLwbD2QYA_L","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"6GuepnlRS8We6p6jHmU-Ux2J"}}
+frontend_1 | 2018-01-31T12:01:05.511341449Z {"@timestamp":"2018-01-31T12:01:05.510+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"FqX_XYWS9oGoKbCmJXt8LI36","details":{"message":{"partnerId":"test-partner-id","masterId":"0CCD8D9BA3EC49FE21E0B48AE8CC31182F1AEAB3651CABBC85535C15A982D55F","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2852/10024631016_8b8553510c_o.jpg"}}},{"name":"IngestionRouting","id":"00aQw0ErSAVqHdIlshfTDIdd","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(f6502134-944c-91fe-b7ce-4873a4aee395)"},"contextId":"-JETA84QgSaA4-m5HOZ0jp_g"}}
+frontend_1 | 2018-01-31T12:01:05.643878887Z {"@timestamp":"2018-01-31T12:01:05.640+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"mBvKeZfdeqxKOPlshpyK4cGW","details":{}},{"name":"IngestionRouting","id":"O0wPnvTsierSlRLwbD2QYA_L","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"6GuepnlRS8We6p6jHmU-Ux2J"}}
+frontend_1 | 2018-01-31T12:01:05.645592322Z {"@timestamp":"2018-01-31T12:01:05.645+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:07.433572289Z {"@timestamp":"2018-01-31T12:01:07.433+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"nrHf5duks1EIaHugVeaCohfD","details":{"endpoint":"GET /health","transactionId":"H2tTh9US1YIffLN4AimR5SFj"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"nrHf5duks1EIaHugVeaCohfD","details":{"endpoint":"GET /health","transactionId":"H2tTh9US1YIffLN4AimR5SFj"}}},"contextId":"Zl7n_DLaAhgFnceM5EG90N7C"}}
+frontend_1 | 2018-01-31T12:01:07.433815417Z {"@timestamp":"2018-01-31T12:01:07.433+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"nrHf5duks1EIaHugVeaCohfD","details":{"endpoint":"GET /health","transactionId":"H2tTh9US1YIffLN4AimR5SFj"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"nrHf5duks1EIaHugVeaCohfD","details":{"endpoint":"GET /health","transactionId":"H2tTh9US1YIffLN4AimR5SFj"}}},"contextId":"Zl7n_DLaAhgFnceM5EG90N7C"}}
+frontend_1 | 2018-01-31T12:01:07.434918081Z {"@timestamp":"2018-01-31T12:01:07.434+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"mIR7KIN75rdtrmpRoEU0uJU6","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"9CFHkeebugv2LIfyA9Ff1mYT"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"mIR7KIN75rdtrmpRoEU0uJU6","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"9CFHkeebugv2LIfyA9Ff1mYT"}}},"contextId":"QCOVO4lrUyXyw6FoD4Q0MtB5"}}
+frontend_1 | 2018-01-31T12:01:07.435529901Z {"@timestamp":"2018-01-31T12:01:07.435+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"DGkfrrsLHkm7FZUIOwe3XE4u","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"DGkfrrsLHkm7FZUIOwe3XE4u","details":{"partnerId":"test-partner-id"}}},"contextId":"QCOVO4lrUyXyw6FoD4Q0MtB5"}}
+frontend_1 | 2018-01-31T12:01:07.435976899Z {"@timestamp":"2018-01-31T12:01:07.435+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"DGkfrrsLHkm7FZUIOwe3XE4u","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"DGkfrrsLHkm7FZUIOwe3XE4u","details":{"partnerId":"test-partner-id"}}},"contextId":"QCOVO4lrUyXyw6FoD4Q0MtB5"}}
+frontend_1 | 2018-01-31T12:01:07.436578279Z {"@timestamp":"2018-01-31T12:01:07.436+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"mIR7KIN75rdtrmpRoEU0uJU6","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"9CFHkeebugv2LIfyA9Ff1mYT"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"mIR7KIN75rdtrmpRoEU0uJU6","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"9CFHkeebugv2LIfyA9Ff1mYT"}}},"contextId":"QCOVO4lrUyXyw6FoD4Q0MtB5"}}
+frontend_1 | 2018-01-31T12:01:07.443670275Z {"@timestamp":"2018-01-31T12:01:07.443+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"MuLfrBvSCBwYO1fFZbbgOO0r","details":{}},{"name":"IngestionRouting","id":"DGkfrrsLHkm7FZUIOwe3XE4u","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"MuLfrBvSCBwYO1fFZbbgOO0r","details":{}}},"contextId":"QCOVO4lrUyXyw6FoD4Q0MtB5"}}
+frontend_1 | 2018-01-31T12:01:07.444035314Z {"@timestamp":"2018-01-31T12:01:07.443+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"MuLfrBvSCBwYO1fFZbbgOO0r","details":{}},{"name":"IngestionRouting","id":"DGkfrrsLHkm7FZUIOwe3XE4u","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"MuLfrBvSCBwYO1fFZbbgOO0r","details":{}}},"contextId":"QCOVO4lrUyXyw6FoD4Q0MtB5"}}
+frontend_1 | 2018-01-31T12:01:07.444591958Z {"@timestamp":"2018-01-31T12:01:07.444+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"MuLfrBvSCBwYO1fFZbbgOO0r","details":{}},{"name":"IngestionRouting","id":"DGkfrrsLHkm7FZUIOwe3XE4u","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"QCOVO4lrUyXyw6FoD4Q0MtB5"}}
+frontend_1 | 2018-01-31T12:01:08.109250880Z {"@timestamp":"2018-01-31T12:01:08.108+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"XqV7wdQC_A4B5lGZBULxMI7G","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"qIIojKvKdTMuug9v2hydoku8"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"XqV7wdQC_A4B5lGZBULxMI7G","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"qIIojKvKdTMuug9v2hydoku8"}}},"contextId":"okSpH2DR36CxcA-96MXd3Pc-"}}
+frontend_1 | 2018-01-31T12:01:08.110507373Z {"@timestamp":"2018-01-31T12:01:08.109+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"WwJMOLMWwBTxbt0joHjdgRux","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"WwJMOLMWwBTxbt0joHjdgRux","details":{"partnerId":"test-partner-id"}}},"contextId":"okSpH2DR36CxcA-96MXd3Pc-"}}
+frontend_1 | 2018-01-31T12:01:08.119909649Z {"@timestamp":"2018-01-31T12:01:08.118+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"WwJMOLMWwBTxbt0joHjdgRux","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"WwJMOLMWwBTxbt0joHjdgRux","details":{"partnerId":"test-partner-id"}}},"contextId":"okSpH2DR36CxcA-96MXd3Pc-"}}
+frontend_1 | 2018-01-31T12:01:08.121512231Z {"@timestamp":"2018-01-31T12:01:08.120+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"XqV7wdQC_A4B5lGZBULxMI7G","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"qIIojKvKdTMuug9v2hydoku8"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"XqV7wdQC_A4B5lGZBULxMI7G","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"qIIojKvKdTMuug9v2hydoku8"}}},"contextId":"okSpH2DR36CxcA-96MXd3Pc-"}}
+frontend_1 | 2018-01-31T12:01:08.129017655Z {"@timestamp":"2018-01-31T12:01:08.128+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"lUqqJCVMO_uADzog5g9UreUe","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8753/16265698583_c1e4ddde32_o.jpg"}}},{"name":"IngestionRouting","id":"WwJMOLMWwBTxbt0joHjdgRux","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"lUqqJCVMO_uADzog5g9UreUe","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8753/16265698583_c1e4ddde32_o.jpg"}}}},"contextId":"okSpH2DR36CxcA-96MXd3Pc-"}}
+frontend_1 | 2018-01-31T12:01:08.131047559Z {"@timestamp":"2018-01-31T12:01:08.130+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"lUqqJCVMO_uADzog5g9UreUe","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8753/16265698583_c1e4ddde32_o.jpg"}}},{"name":"IngestionRouting","id":"WwJMOLMWwBTxbt0joHjdgRux","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"lUqqJCVMO_uADzog5g9UreUe","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8753/16265698583_c1e4ddde32_o.jpg"}}}},"contextId":"okSpH2DR36CxcA-96MXd3Pc-"}}
+frontend_1 | 2018-01-31T12:01:08.132739905Z {"@timestamp":"2018-01-31T12:01:08.131+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"RpkgTszo68wpdDFFRRuItG5D","details":{"message":{"partnerId":"test-partner-id","masterId":"CD3FB089A0E75647CA4B72D541D508842B33C4F3464144A3CFCD044FA3D44FBD","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8753/16265698583_c1e4ddde32_o.jpg"}}},{"name":"IngestionRouting","id":"WwJMOLMWwBTxbt0joHjdgRux","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"RpkgTszo68wpdDFFRRuItG5D","details":{"message":{"partnerId":"test-partner-id","masterId":"CD3FB089A0E75647CA4B72D541D508842B33C4F3464144A3CFCD044FA3D44FBD","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8753/16265698583_c1e4ddde32_o.jpg"}}}},"contextId":"okSpH2DR36CxcA-96MXd3Pc-"}}
+frontend_1 | 2018-01-31T12:01:08.139322408Z {"@timestamp":"2018-01-31T12:01:08.138+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"RpkgTszo68wpdDFFRRuItG5D","details":{"message":{"partnerId":"test-partner-id","masterId":"CD3FB089A0E75647CA4B72D541D508842B33C4F3464144A3CFCD044FA3D44FBD","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8753/16265698583_c1e4ddde32_o.jpg"}}},{"name":"IngestionRouting","id":"WwJMOLMWwBTxbt0joHjdgRux","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"RpkgTszo68wpdDFFRRuItG5D","details":{"message":{"partnerId":"test-partner-id","masterId":"CD3FB089A0E75647CA4B72D541D508842B33C4F3464144A3CFCD044FA3D44FBD","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8753/16265698583_c1e4ddde32_o.jpg"}}}},"contextId":"okSpH2DR36CxcA-96MXd3Pc-"}}
+frontend_1 | 2018-01-31T12:01:08.209222691Z {"@timestamp":"2018-01-31T12:01:08.208+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"RpkgTszo68wpdDFFRRuItG5D","details":{"message":{"partnerId":"test-partner-id","masterId":"CD3FB089A0E75647CA4B72D541D508842B33C4F3464144A3CFCD044FA3D44FBD","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8753/16265698583_c1e4ddde32_o.jpg"}}},{"name":"IngestionRouting","id":"WwJMOLMWwBTxbt0joHjdgRux","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(20d41d32-47e1-2959-f749-400fa2296516)"},"contextId":"okSpH2DR36CxcA-96MXd3Pc-"}}
+frontend_1 | 2018-01-31T12:01:08.218698562Z {"@timestamp":"2018-01-31T12:01:08.218+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"MuLfrBvSCBwYO1fFZbbgOO0r","details":{}},{"name":"IngestionRouting","id":"DGkfrrsLHkm7FZUIOwe3XE4u","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"QCOVO4lrUyXyw6FoD4Q0MtB5"}}
+frontend_1 | 2018-01-31T12:01:08.219969833Z {"@timestamp":"2018-01-31T12:01:08.219+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:08.427437955Z {"@timestamp":"2018-01-31T12:01:08.426+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"D0IYp2i0VIYgwC0KX9WG3QHf","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"4QU70RcQn5d6m7lniNsKEcWU"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"D0IYp2i0VIYgwC0KX9WG3QHf","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"4QU70RcQn5d6m7lniNsKEcWU"}}},"contextId":"PtHAr9dZ5xwm83Qu37dv2CSp"}}
+frontend_1 | 2018-01-31T12:01:08.428317670Z {"@timestamp":"2018-01-31T12:01:08.427+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"jWXJFej2lYDjmU-YH6FWd-x8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"jWXJFej2lYDjmU-YH6FWd-x8","details":{"partnerId":"test-partner-id"}}},"contextId":"PtHAr9dZ5xwm83Qu37dv2CSp"}}
+frontend_1 | 2018-01-31T12:01:08.431116930Z {"@timestamp":"2018-01-31T12:01:08.428+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"jWXJFej2lYDjmU-YH6FWd-x8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"jWXJFej2lYDjmU-YH6FWd-x8","details":{"partnerId":"test-partner-id"}}},"contextId":"PtHAr9dZ5xwm83Qu37dv2CSp"}}
+frontend_1 | 2018-01-31T12:01:08.431160147Z {"@timestamp":"2018-01-31T12:01:08.430+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"D0IYp2i0VIYgwC0KX9WG3QHf","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"4QU70RcQn5d6m7lniNsKEcWU"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"D0IYp2i0VIYgwC0KX9WG3QHf","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"4QU70RcQn5d6m7lniNsKEcWU"}}},"contextId":"PtHAr9dZ5xwm83Qu37dv2CSp"}}
+frontend_1 | 2018-01-31T12:01:08.432186055Z {"@timestamp":"2018-01-31T12:01:08.431+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"pSgggy12ctE9SQT1VhAH1xe3","details":{"request":{"client":"test","metadata":{},"reference":"https://c2.staticflickr.com/5/4036/4424429456_efc1951733_o.jpg"}}},{"name":"IngestionRouting","id":"jWXJFej2lYDjmU-YH6FWd-x8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"pSgggy12ctE9SQT1VhAH1xe3","details":{"request":{"client":"test","metadata":{},"reference":"https://c2.staticflickr.com/5/4036/4424429456_efc1951733_o.jpg"}}}},"contextId":"PtHAr9dZ5xwm83Qu37dv2CSp"}}
+frontend_1 | 2018-01-31T12:01:08.432522239Z {"@timestamp":"2018-01-31T12:01:08.432+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"JxJrXKQRpTCUt4ugGLpngk4X","details":{"endpoint":"GET /health","transactionId":"PHoNC6F578tXCEnS30SzRfB3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"JxJrXKQRpTCUt4ugGLpngk4X","details":{"endpoint":"GET /health","transactionId":"PHoNC6F578tXCEnS30SzRfB3"}}},"contextId":"nNvpwc48sJq4fk0w0SBsK1Ow"}}
+frontend_1 | 2018-01-31T12:01:08.432860187Z {"@timestamp":"2018-01-31T12:01:08.432+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"pSgggy12ctE9SQT1VhAH1xe3","details":{"request":{"client":"test","metadata":{},"reference":"https://c2.staticflickr.com/5/4036/4424429456_efc1951733_o.jpg"}}},{"name":"IngestionRouting","id":"jWXJFej2lYDjmU-YH6FWd-x8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"pSgggy12ctE9SQT1VhAH1xe3","details":{"request":{"client":"test","metadata":{},"reference":"https://c2.staticflickr.com/5/4036/4424429456_efc1951733_o.jpg"}}}},"contextId":"PtHAr9dZ5xwm83Qu37dv2CSp"}}
+frontend_1 | 2018-01-31T12:01:08.432982338Z {"@timestamp":"2018-01-31T12:01:08.432+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"JxJrXKQRpTCUt4ugGLpngk4X","details":{"endpoint":"GET /health","transactionId":"PHoNC6F578tXCEnS30SzRfB3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"JxJrXKQRpTCUt4ugGLpngk4X","details":{"endpoint":"GET /health","transactionId":"PHoNC6F578tXCEnS30SzRfB3"}}},"contextId":"nNvpwc48sJq4fk0w0SBsK1Ow"}}
+frontend_1 | 2018-01-31T12:01:08.433298743Z {"@timestamp":"2018-01-31T12:01:08.433+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"UoAv9ni-cGDBBzBgYnF6Vfgo","details":{"message":{"partnerId":"test-partner-id","masterId":"04FDDE71EAB26AD5CE0C8D065CA45773689FAC156C27349B49A694071567EDBC","client":"test","metadata":{},"reference":"https://c2.staticflickr.com/5/4036/4424429456_efc1951733_o.jpg"}}},{"name":"IngestionRouting","id":"jWXJFej2lYDjmU-YH6FWd-x8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"UoAv9ni-cGDBBzBgYnF6Vfgo","details":{"message":{"partnerId":"test-partner-id","masterId":"04FDDE71EAB26AD5CE0C8D065CA45773689FAC156C27349B49A694071567EDBC","client":"test","metadata":{},"reference":"https://c2.staticflickr.com/5/4036/4424429456_efc1951733_o.jpg"}}}},"contextId":"PtHAr9dZ5xwm83Qu37dv2CSp"}}
+frontend_1 | 2018-01-31T12:01:08.439697076Z {"@timestamp":"2018-01-31T12:01:08.439+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"tTKu4YT2Y9C2zGAu9jdKAPwT","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"mhixiLtzI5Ato47NN-Q4pvFE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"tTKu4YT2Y9C2zGAu9jdKAPwT","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"mhixiLtzI5Ato47NN-Q4pvFE"}}},"contextId":"hmmyDE89RfJyBMyMsK8zQZUm"}}
+frontend_1 | 2018-01-31T12:01:08.440311838Z {"@timestamp":"2018-01-31T12:01:08.440+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"nLLzPdq20BbGD1f1BGW7AxkN","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"nLLzPdq20BbGD1f1BGW7AxkN","details":{"partnerId":"test-partner-id"}}},"contextId":"hmmyDE89RfJyBMyMsK8zQZUm"}}
+frontend_1 | 2018-01-31T12:01:08.441556887Z {"@timestamp":"2018-01-31T12:01:08.441+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"nLLzPdq20BbGD1f1BGW7AxkN","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"nLLzPdq20BbGD1f1BGW7AxkN","details":{"partnerId":"test-partner-id"}}},"contextId":"hmmyDE89RfJyBMyMsK8zQZUm"}}
+frontend_1 | 2018-01-31T12:01:08.442131630Z {"@timestamp":"2018-01-31T12:01:08.441+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"tTKu4YT2Y9C2zGAu9jdKAPwT","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"mhixiLtzI5Ato47NN-Q4pvFE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"tTKu4YT2Y9C2zGAu9jdKAPwT","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"mhixiLtzI5Ato47NN-Q4pvFE"}}},"contextId":"hmmyDE89RfJyBMyMsK8zQZUm"}}
+frontend_1 | 2018-01-31T12:01:08.450704390Z {"@timestamp":"2018-01-31T12:01:08.450+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"LxFc-fPrA4aDLcQmFlgUuxBf","details":{}},{"name":"IngestionRouting","id":"nLLzPdq20BbGD1f1BGW7AxkN","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"LxFc-fPrA4aDLcQmFlgUuxBf","details":{}}},"contextId":"hmmyDE89RfJyBMyMsK8zQZUm"}}
+frontend_1 | 2018-01-31T12:01:08.451266411Z {"@timestamp":"2018-01-31T12:01:08.450+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"LxFc-fPrA4aDLcQmFlgUuxBf","details":{}},{"name":"IngestionRouting","id":"nLLzPdq20BbGD1f1BGW7AxkN","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"LxFc-fPrA4aDLcQmFlgUuxBf","details":{}}},"contextId":"hmmyDE89RfJyBMyMsK8zQZUm"}}
+frontend_1 | 2018-01-31T12:01:08.451964930Z {"@timestamp":"2018-01-31T12:01:08.451+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"UoAv9ni-cGDBBzBgYnF6Vfgo","details":{"message":{"partnerId":"test-partner-id","masterId":"04FDDE71EAB26AD5CE0C8D065CA45773689FAC156C27349B49A694071567EDBC","client":"test","metadata":{},"reference":"https://c2.staticflickr.com/5/4036/4424429456_efc1951733_o.jpg"}}},{"name":"IngestionRouting","id":"jWXJFej2lYDjmU-YH6FWd-x8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"UoAv9ni-cGDBBzBgYnF6Vfgo","details":{"message":{"partnerId":"test-partner-id","masterId":"04FDDE71EAB26AD5CE0C8D065CA45773689FAC156C27349B49A694071567EDBC","client":"test","metadata":{},"reference":"https://c2.staticflickr.com/5/4036/4424429456_efc1951733_o.jpg"}}}},"contextId":"PtHAr9dZ5xwm83Qu37dv2CSp"}}
+frontend_1 | 2018-01-31T12:01:08.452216922Z {"@timestamp":"2018-01-31T12:01:08.451+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"LxFc-fPrA4aDLcQmFlgUuxBf","details":{}},{"name":"IngestionRouting","id":"nLLzPdq20BbGD1f1BGW7AxkN","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"hmmyDE89RfJyBMyMsK8zQZUm"}}
+frontend_1 | 2018-01-31T12:01:08.510068302Z {"@timestamp":"2018-01-31T12:01:08.509+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"UoAv9ni-cGDBBzBgYnF6Vfgo","details":{"message":{"partnerId":"test-partner-id","masterId":"04FDDE71EAB26AD5CE0C8D065CA45773689FAC156C27349B49A694071567EDBC","client":"test","metadata":{},"reference":"https://c2.staticflickr.com/5/4036/4424429456_efc1951733_o.jpg"}}},{"name":"IngestionRouting","id":"jWXJFej2lYDjmU-YH6FWd-x8","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(28b77ef2-15de-9c13-40f0-d9e3a1667baa)"},"contextId":"PtHAr9dZ5xwm83Qu37dv2CSp"}}
+frontend_1 | 2018-01-31T12:01:08.518817808Z {"@timestamp":"2018-01-31T12:01:08.518+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"LxFc-fPrA4aDLcQmFlgUuxBf","details":{}},{"name":"IngestionRouting","id":"nLLzPdq20BbGD1f1BGW7AxkN","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"hmmyDE89RfJyBMyMsK8zQZUm"}}
+frontend_1 | 2018-01-31T12:01:08.520804132Z {"@timestamp":"2018-01-31T12:01:08.520+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:09.424404758Z {"@timestamp":"2018-01-31T12:01:09.423+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"gVOLABJtHitVucKaP7vogqSY","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"_V4_R67y2LM1R7lvc8f4shkZ"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"gVOLABJtHitVucKaP7vogqSY","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"_V4_R67y2LM1R7lvc8f4shkZ"}}},"contextId":"QBEKNnJ3I7Lix65FezLdDxk_"}}
+frontend_1 | 2018-01-31T12:01:09.425129413Z {"@timestamp":"2018-01-31T12:01:09.424+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"zsyI8BI1o_XyzDolebSSIHzg","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"zsyI8BI1o_XyzDolebSSIHzg","details":{"partnerId":"test-partner-id"}}},"contextId":"QBEKNnJ3I7Lix65FezLdDxk_"}}
+frontend_1 | 2018-01-31T12:01:09.425648991Z {"@timestamp":"2018-01-31T12:01:09.425+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"zsyI8BI1o_XyzDolebSSIHzg","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"zsyI8BI1o_XyzDolebSSIHzg","details":{"partnerId":"test-partner-id"}}},"contextId":"QBEKNnJ3I7Lix65FezLdDxk_"}}
+frontend_1 | 2018-01-31T12:01:09.426210766Z {"@timestamp":"2018-01-31T12:01:09.425+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"gVOLABJtHitVucKaP7vogqSY","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"_V4_R67y2LM1R7lvc8f4shkZ"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"gVOLABJtHitVucKaP7vogqSY","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"_V4_R67y2LM1R7lvc8f4shkZ"}}},"contextId":"QBEKNnJ3I7Lix65FezLdDxk_"}}
+frontend_1 | 2018-01-31T12:01:09.429098569Z {"@timestamp":"2018-01-31T12:01:09.427+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"xTWy-e92UjVqRVppy-BpjoOM","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/172/373869778_cabbe85288_o.jpg"}}},{"name":"IngestionRouting","id":"zsyI8BI1o_XyzDolebSSIHzg","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"xTWy-e92UjVqRVppy-BpjoOM","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/172/373869778_cabbe85288_o.jpg"}}}},"contextId":"QBEKNnJ3I7Lix65FezLdDxk_"}}
+frontend_1 | 2018-01-31T12:01:09.430193650Z {"@timestamp":"2018-01-31T12:01:09.429+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"x0tgIaXHr4co6iXy_wL6dfVd","details":{"endpoint":"GET /health","transactionId":"qq8er6zUA9mpRIgwXIHSAREB"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"x0tgIaXHr4co6iXy_wL6dfVd","details":{"endpoint":"GET /health","transactionId":"qq8er6zUA9mpRIgwXIHSAREB"}}},"contextId":"SZYhJPMICssBb9QENfGbNx-z"}}
+frontend_1 | 2018-01-31T12:01:09.430829140Z {"@timestamp":"2018-01-31T12:01:09.430+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"x0tgIaXHr4co6iXy_wL6dfVd","details":{"endpoint":"GET /health","transactionId":"qq8er6zUA9mpRIgwXIHSAREB"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"x0tgIaXHr4co6iXy_wL6dfVd","details":{"endpoint":"GET /health","transactionId":"qq8er6zUA9mpRIgwXIHSAREB"}}},"contextId":"SZYhJPMICssBb9QENfGbNx-z"}}
+frontend_1 | 2018-01-31T12:01:09.432121222Z {"@timestamp":"2018-01-31T12:01:09.431+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"xTWy-e92UjVqRVppy-BpjoOM","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/172/373869778_cabbe85288_o.jpg"}}},{"name":"IngestionRouting","id":"zsyI8BI1o_XyzDolebSSIHzg","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"xTWy-e92UjVqRVppy-BpjoOM","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/172/373869778_cabbe85288_o.jpg"}}}},"contextId":"QBEKNnJ3I7Lix65FezLdDxk_"}}
+frontend_1 | 2018-01-31T12:01:09.433216077Z {"@timestamp":"2018-01-31T12:01:09.432+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"krIQvYPrq0n2TCZgyRtHv8_2","details":{"message":{"partnerId":"test-partner-id","masterId":"00D4D6904B33C5309201F27703DB77EA45D998A6E2E083FD9126F4CF54EE9BDB","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/172/373869778_cabbe85288_o.jpg"}}},{"name":"IngestionRouting","id":"zsyI8BI1o_XyzDolebSSIHzg","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"krIQvYPrq0n2TCZgyRtHv8_2","details":{"message":{"partnerId":"test-partner-id","masterId":"00D4D6904B33C5309201F27703DB77EA45D998A6E2E083FD9126F4CF54EE9BDB","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/172/373869778_cabbe85288_o.jpg"}}}},"contextId":"QBEKNnJ3I7Lix65FezLdDxk_"}}
+frontend_1 | 2018-01-31T12:01:09.435382954Z {"@timestamp":"2018-01-31T12:01:09.434+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"IFr73f0d4U0X-EJ0o18iXu4D","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"7SUeUiJt81wg95R6_KeuX2sT"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"IFr73f0d4U0X-EJ0o18iXu4D","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"7SUeUiJt81wg95R6_KeuX2sT"}}},"contextId":"xYLqbleChWhcJqOfzO2IuWyI"}}
+frontend_1 | 2018-01-31T12:01:09.436246862Z {"@timestamp":"2018-01-31T12:01:09.435+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"EF31PD4mv71aPLDhkvjN1xMU","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"EF31PD4mv71aPLDhkvjN1xMU","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"xYLqbleChWhcJqOfzO2IuWyI"}}
+frontend_1 | 2018-01-31T12:01:09.436504285Z {"@timestamp":"2018-01-31T12:01:09.435+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"krIQvYPrq0n2TCZgyRtHv8_2","details":{"message":{"partnerId":"test-partner-id","masterId":"00D4D6904B33C5309201F27703DB77EA45D998A6E2E083FD9126F4CF54EE9BDB","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/172/373869778_cabbe85288_o.jpg"}}},{"name":"IngestionRouting","id":"zsyI8BI1o_XyzDolebSSIHzg","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"krIQvYPrq0n2TCZgyRtHv8_2","details":{"message":{"partnerId":"test-partner-id","masterId":"00D4D6904B33C5309201F27703DB77EA45D998A6E2E083FD9126F4CF54EE9BDB","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/172/373869778_cabbe85288_o.jpg"}}}},"contextId":"QBEKNnJ3I7Lix65FezLdDxk_"}}
+frontend_1 | 2018-01-31T12:01:09.437791216Z {"@timestamp":"2018-01-31T12:01:09.437+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"EF31PD4mv71aPLDhkvjN1xMU","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"EF31PD4mv71aPLDhkvjN1xMU","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"xYLqbleChWhcJqOfzO2IuWyI"}}
+frontend_1 | 2018-01-31T12:01:09.447110544Z {"@timestamp":"2018-01-31T12:01:09.446+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"IFr73f0d4U0X-EJ0o18iXu4D","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"7SUeUiJt81wg95R6_KeuX2sT"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"IFr73f0d4U0X-EJ0o18iXu4D","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"7SUeUiJt81wg95R6_KeuX2sT"}}},"contextId":"xYLqbleChWhcJqOfzO2IuWyI"}}
+frontend_1 | 2018-01-31T12:01:09.461321437Z {"@timestamp":"2018-01-31T12:01:09.460+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"5OUucJwMi7C_Dc8MAFO5uaPM","details":{}},{"name":"IngestionRouting","id":"EF31PD4mv71aPLDhkvjN1xMU","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"5OUucJwMi7C_Dc8MAFO5uaPM","details":{}}},"contextId":"xYLqbleChWhcJqOfzO2IuWyI"}}
+frontend_1 | 2018-01-31T12:01:09.461644951Z {"@timestamp":"2018-01-31T12:01:09.461+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"5OUucJwMi7C_Dc8MAFO5uaPM","details":{}},{"name":"IngestionRouting","id":"EF31PD4mv71aPLDhkvjN1xMU","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"5OUucJwMi7C_Dc8MAFO5uaPM","details":{}}},"contextId":"xYLqbleChWhcJqOfzO2IuWyI"}}
+frontend_1 | 2018-01-31T12:01:09.462227749Z {"@timestamp":"2018-01-31T12:01:09.461+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"5OUucJwMi7C_Dc8MAFO5uaPM","details":{}},{"name":"IngestionRouting","id":"EF31PD4mv71aPLDhkvjN1xMU","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"xYLqbleChWhcJqOfzO2IuWyI"}}
+frontend_1 | 2018-01-31T12:01:09.510092935Z {"@timestamp":"2018-01-31T12:01:09.509+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"krIQvYPrq0n2TCZgyRtHv8_2","details":{"message":{"partnerId":"test-partner-id","masterId":"00D4D6904B33C5309201F27703DB77EA45D998A6E2E083FD9126F4CF54EE9BDB","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/172/373869778_cabbe85288_o.jpg"}}},{"name":"IngestionRouting","id":"zsyI8BI1o_XyzDolebSSIHzg","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(1a8b94f3-93f5-22b7-2c7a-64ad88d44afb)"},"contextId":"QBEKNnJ3I7Lix65FezLdDxk_"}}
+frontend_1 | 2018-01-31T12:01:09.538930180Z {"@timestamp":"2018-01-31T12:01:09.538+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"5OUucJwMi7C_Dc8MAFO5uaPM","details":{}},{"name":"IngestionRouting","id":"EF31PD4mv71aPLDhkvjN1xMU","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"xYLqbleChWhcJqOfzO2IuWyI"}}
+frontend_1 | 2018-01-31T12:01:09.541932508Z {"@timestamp":"2018-01-31T12:01:09.541+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:11.426491331Z {"@timestamp":"2018-01-31T12:01:11.425+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"OPUAzUbQpr5EgJsaPZiRnnZf","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"Pp8uJZ-u9GcBHkQ3JVzHBQnI"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"OPUAzUbQpr5EgJsaPZiRnnZf","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"Pp8uJZ-u9GcBHkQ3JVzHBQnI"}}},"contextId":"35DYmCk0IZtNLLGTt9_tGddo"}}
+frontend_1 | 2018-01-31T12:01:11.434535458Z {"@timestamp":"2018-01-31T12:01:11.434+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"GGv41zSuAyrCnkySo0aLljgl","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"GGv41zSuAyrCnkySo0aLljgl","details":{"partnerId":"test-partner-id"}}},"contextId":"35DYmCk0IZtNLLGTt9_tGddo"}}
+frontend_1 | 2018-01-31T12:01:11.435413767Z {"@timestamp":"2018-01-31T12:01:11.434+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"GGv41zSuAyrCnkySo0aLljgl","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"GGv41zSuAyrCnkySo0aLljgl","details":{"partnerId":"test-partner-id"}}},"contextId":"35DYmCk0IZtNLLGTt9_tGddo"}}
+frontend_1 | 2018-01-31T12:01:11.435447096Z {"@timestamp":"2018-01-31T12:01:11.434+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"qF-6b9iIbHr3wW7SiLFK_j6w","details":{"endpoint":"GET /health","transactionId":"5qj7rKFziLYJtKSbEjZ1sTlW"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"qF-6b9iIbHr3wW7SiLFK_j6w","details":{"endpoint":"GET /health","transactionId":"5qj7rKFziLYJtKSbEjZ1sTlW"}}},"contextId":"oeS4Rr3gIhWbj99dmlhAiFj-"}}
+frontend_1 | 2018-01-31T12:01:11.435722601Z {"@timestamp":"2018-01-31T12:01:11.435+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"OPUAzUbQpr5EgJsaPZiRnnZf","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"Pp8uJZ-u9GcBHkQ3JVzHBQnI"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"OPUAzUbQpr5EgJsaPZiRnnZf","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"Pp8uJZ-u9GcBHkQ3JVzHBQnI"}}},"contextId":"35DYmCk0IZtNLLGTt9_tGddo"}}
+frontend_1 | 2018-01-31T12:01:11.437454596Z {"@timestamp":"2018-01-31T12:01:11.436+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"NfqjOkiJqZS7_S1iXsuiNyz7","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5612/15770047731_b842bbcfd6_o.jpg"}}},{"name":"IngestionRouting","id":"GGv41zSuAyrCnkySo0aLljgl","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"NfqjOkiJqZS7_S1iXsuiNyz7","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5612/15770047731_b842bbcfd6_o.jpg"}}}},"contextId":"35DYmCk0IZtNLLGTt9_tGddo"}}
+frontend_1 | 2018-01-31T12:01:11.437623134Z {"@timestamp":"2018-01-31T12:01:11.435+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"qF-6b9iIbHr3wW7SiLFK_j6w","details":{"endpoint":"GET /health","transactionId":"5qj7rKFziLYJtKSbEjZ1sTlW"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"qF-6b9iIbHr3wW7SiLFK_j6w","details":{"endpoint":"GET /health","transactionId":"5qj7rKFziLYJtKSbEjZ1sTlW"}}},"contextId":"oeS4Rr3gIhWbj99dmlhAiFj-"}}
+frontend_1 | 2018-01-31T12:01:11.438532910Z {"@timestamp":"2018-01-31T12:01:11.438+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"frAnAgL44ndpC0vH4dH-eSff","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"UlZs2MjcQWkAdmNoy8yWW1PU"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"frAnAgL44ndpC0vH4dH-eSff","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"UlZs2MjcQWkAdmNoy8yWW1PU"}}},"contextId":"F6G2U51e6beGeM76DTUcro72"}}
+frontend_1 | 2018-01-31T12:01:11.439102869Z {"@timestamp":"2018-01-31T12:01:11.438+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"ZIwJvgom6uL8sWXGb6hDERaO","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"ZIwJvgom6uL8sWXGb6hDERaO","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"F6G2U51e6beGeM76DTUcro72"}}
+frontend_1 | 2018-01-31T12:01:11.439552013Z {"@timestamp":"2018-01-31T12:01:11.439+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"ZIwJvgom6uL8sWXGb6hDERaO","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"ZIwJvgom6uL8sWXGb6hDERaO","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"F6G2U51e6beGeM76DTUcro72"}}
+frontend_1 | 2018-01-31T12:01:11.439760590Z {"@timestamp":"2018-01-31T12:01:11.439+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"NfqjOkiJqZS7_S1iXsuiNyz7","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5612/15770047731_b842bbcfd6_o.jpg"}}},{"name":"IngestionRouting","id":"GGv41zSuAyrCnkySo0aLljgl","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"NfqjOkiJqZS7_S1iXsuiNyz7","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5612/15770047731_b842bbcfd6_o.jpg"}}}},"contextId":"35DYmCk0IZtNLLGTt9_tGddo"}}
+frontend_1 | 2018-01-31T12:01:11.439969786Z {"@timestamp":"2018-01-31T12:01:11.439+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"frAnAgL44ndpC0vH4dH-eSff","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"UlZs2MjcQWkAdmNoy8yWW1PU"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"frAnAgL44ndpC0vH4dH-eSff","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"UlZs2MjcQWkAdmNoy8yWW1PU"}}},"contextId":"F6G2U51e6beGeM76DTUcro72"}}
+frontend_1 | 2018-01-31T12:01:11.440482616Z {"@timestamp":"2018-01-31T12:01:11.440+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"A5LPUHQYTh--1GEBJpeFlGnT","details":{"message":{"partnerId":"test-partner-id","masterId":"C9F183220CEC92457866660B3AC4E167A0DC28E53263BFDCEB3D1D83A7976565","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5612/15770047731_b842bbcfd6_o.jpg"}}},{"name":"IngestionRouting","id":"GGv41zSuAyrCnkySo0aLljgl","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"A5LPUHQYTh--1GEBJpeFlGnT","details":{"message":{"partnerId":"test-partner-id","masterId":"C9F183220CEC92457866660B3AC4E167A0DC28E53263BFDCEB3D1D83A7976565","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5612/15770047731_b842bbcfd6_o.jpg"}}}},"contextId":"35DYmCk0IZtNLLGTt9_tGddo"}}
+frontend_1 | 2018-01-31T12:01:11.444022901Z {"@timestamp":"2018-01-31T12:01:11.443+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"A5LPUHQYTh--1GEBJpeFlGnT","details":{"message":{"partnerId":"test-partner-id","masterId":"C9F183220CEC92457866660B3AC4E167A0DC28E53263BFDCEB3D1D83A7976565","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5612/15770047731_b842bbcfd6_o.jpg"}}},{"name":"IngestionRouting","id":"GGv41zSuAyrCnkySo0aLljgl","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"A5LPUHQYTh--1GEBJpeFlGnT","details":{"message":{"partnerId":"test-partner-id","masterId":"C9F183220CEC92457866660B3AC4E167A0DC28E53263BFDCEB3D1D83A7976565","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5612/15770047731_b842bbcfd6_o.jpg"}}}},"contextId":"35DYmCk0IZtNLLGTt9_tGddo"}}
+frontend_1 | 2018-01-31T12:01:11.457415289Z {"@timestamp":"2018-01-31T12:01:11.457+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"wmBZ5sMc-Xw9juEaFvcqkBUy","details":{}},{"name":"IngestionRouting","id":"ZIwJvgom6uL8sWXGb6hDERaO","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"wmBZ5sMc-Xw9juEaFvcqkBUy","details":{}}},"contextId":"F6G2U51e6beGeM76DTUcro72"}}
+frontend_1 | 2018-01-31T12:01:11.457969277Z {"@timestamp":"2018-01-31T12:01:11.457+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"wmBZ5sMc-Xw9juEaFvcqkBUy","details":{}},{"name":"IngestionRouting","id":"ZIwJvgom6uL8sWXGb6hDERaO","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"wmBZ5sMc-Xw9juEaFvcqkBUy","details":{}}},"contextId":"F6G2U51e6beGeM76DTUcro72"}}
+frontend_1 | 2018-01-31T12:01:11.458622497Z {"@timestamp":"2018-01-31T12:01:11.458+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"wmBZ5sMc-Xw9juEaFvcqkBUy","details":{}},{"name":"IngestionRouting","id":"ZIwJvgom6uL8sWXGb6hDERaO","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"F6G2U51e6beGeM76DTUcro72"}}
+frontend_1 | 2018-01-31T12:01:11.509400324Z {"@timestamp":"2018-01-31T12:01:11.508+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"A5LPUHQYTh--1GEBJpeFlGnT","details":{"message":{"partnerId":"test-partner-id","masterId":"C9F183220CEC92457866660B3AC4E167A0DC28E53263BFDCEB3D1D83A7976565","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5612/15770047731_b842bbcfd6_o.jpg"}}},{"name":"IngestionRouting","id":"GGv41zSuAyrCnkySo0aLljgl","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(815619b1-4c89-e404-a01c-9c33b21accb6)"},"contextId":"35DYmCk0IZtNLLGTt9_tGddo"}}
+frontend_1 | 2018-01-31T12:01:11.529287247Z {"@timestamp":"2018-01-31T12:01:11.528+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"wmBZ5sMc-Xw9juEaFvcqkBUy","details":{}},{"name":"IngestionRouting","id":"ZIwJvgom6uL8sWXGb6hDERaO","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"F6G2U51e6beGeM76DTUcro72"}}
+frontend_1 | 2018-01-31T12:01:11.531009939Z {"@timestamp":"2018-01-31T12:01:11.530+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:12.435323824Z {"@timestamp":"2018-01-31T12:01:12.434+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"XhsfnfPPC7LO7NMxPFVeHugY","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"UWKMvBh_N1T6akCSSvKLTc5K"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"XhsfnfPPC7LO7NMxPFVeHugY","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"UWKMvBh_N1T6akCSSvKLTc5K"}}},"contextId":"xBvZ7wK3dnvzZIkmAxj3e_7R"}}
+frontend_1 | 2018-01-31T12:01:12.436157421Z {"@timestamp":"2018-01-31T12:01:12.435+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"StoOD6eP8T5yQK07wnrdqGwA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"StoOD6eP8T5yQK07wnrdqGwA","details":{"partnerId":"test-partner-id"}}},"contextId":"xBvZ7wK3dnvzZIkmAxj3e_7R"}}
+frontend_1 | 2018-01-31T12:01:12.437753298Z {"@timestamp":"2018-01-31T12:01:12.436+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"StoOD6eP8T5yQK07wnrdqGwA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"StoOD6eP8T5yQK07wnrdqGwA","details":{"partnerId":"test-partner-id"}}},"contextId":"xBvZ7wK3dnvzZIkmAxj3e_7R"}}
+frontend_1 | 2018-01-31T12:01:12.438318037Z {"@timestamp":"2018-01-31T12:01:12.437+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"XhsfnfPPC7LO7NMxPFVeHugY","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"UWKMvBh_N1T6akCSSvKLTc5K"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"XhsfnfPPC7LO7NMxPFVeHugY","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"UWKMvBh_N1T6akCSSvKLTc5K"}}},"contextId":"xBvZ7wK3dnvzZIkmAxj3e_7R"}}
+frontend_1 | 2018-01-31T12:01:12.440436079Z {"@timestamp":"2018-01-31T12:01:12.440+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"U8PHpaK9PtAMvbGew9Et8asu","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"RQK1L3CM9wVPELS3__emo0t0"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"U8PHpaK9PtAMvbGew9Et8asu","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"RQK1L3CM9wVPELS3__emo0t0"}}},"contextId":"ivbGmZihYg_lks6oHqgiSat1"}}
+frontend_1 | 2018-01-31T12:01:12.440459180Z {"@timestamp":"2018-01-31T12:01:12.439+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"PAA5CapC0k-pZtg4YhvopWv6","details":{"endpoint":"GET /health","transactionId":"eJ4i75-GUCPO61SU2pv8bnH6"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"PAA5CapC0k-pZtg4YhvopWv6","details":{"endpoint":"GET /health","transactionId":"eJ4i75-GUCPO61SU2pv8bnH6"}}},"contextId":"S0I9cEPmx8XDriz88QDkskoM"}}
+frontend_1 | 2018-01-31T12:01:12.440863028Z {"@timestamp":"2018-01-31T12:01:12.440+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"PAA5CapC0k-pZtg4YhvopWv6","details":{"endpoint":"GET /health","transactionId":"eJ4i75-GUCPO61SU2pv8bnH6"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"PAA5CapC0k-pZtg4YhvopWv6","details":{"endpoint":"GET /health","transactionId":"eJ4i75-GUCPO61SU2pv8bnH6"}}},"contextId":"S0I9cEPmx8XDriz88QDkskoM"}}
+frontend_1 | 2018-01-31T12:01:12.441089638Z {"@timestamp":"2018-01-31T12:01:12.440+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"3WenIMA4ZO1rSEl2eqbNXYRR","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"3WenIMA4ZO1rSEl2eqbNXYRR","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"ivbGmZihYg_lks6oHqgiSat1"}}
+frontend_1 | 2018-01-31T12:01:12.441487327Z {"@timestamp":"2018-01-31T12:01:12.441+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"3WenIMA4ZO1rSEl2eqbNXYRR","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"3WenIMA4ZO1rSEl2eqbNXYRR","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"ivbGmZihYg_lks6oHqgiSat1"}}
+frontend_1 | 2018-01-31T12:01:12.441824928Z {"@timestamp":"2018-01-31T12:01:12.441+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"U8PHpaK9PtAMvbGew9Et8asu","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"RQK1L3CM9wVPELS3__emo0t0"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"U8PHpaK9PtAMvbGew9Et8asu","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"RQK1L3CM9wVPELS3__emo0t0"}}},"contextId":"ivbGmZihYg_lks6oHqgiSat1"}}
+frontend_1 | 2018-01-31T12:01:12.444428106Z {"@timestamp":"2018-01-31T12:01:12.443+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"8II_hdBM8j-laLJAPvV2SvB0","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/75/186961769_a083e2ba26_o.jpg"}}},{"name":"IngestionRouting","id":"StoOD6eP8T5yQK07wnrdqGwA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"8II_hdBM8j-laLJAPvV2SvB0","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/75/186961769_a083e2ba26_o.jpg"}}}},"contextId":"xBvZ7wK3dnvzZIkmAxj3e_7R"}}
+frontend_1 | 2018-01-31T12:01:12.445613395Z {"@timestamp":"2018-01-31T12:01:12.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"8II_hdBM8j-laLJAPvV2SvB0","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/75/186961769_a083e2ba26_o.jpg"}}},{"name":"IngestionRouting","id":"StoOD6eP8T5yQK07wnrdqGwA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"8II_hdBM8j-laLJAPvV2SvB0","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/75/186961769_a083e2ba26_o.jpg"}}}},"contextId":"xBvZ7wK3dnvzZIkmAxj3e_7R"}}
+frontend_1 | 2018-01-31T12:01:12.446608829Z {"@timestamp":"2018-01-31T12:01:12.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"HjbpD8-1_xtTT8BHVt9IPfnw","details":{"message":{"partnerId":"test-partner-id","masterId":"4A4099072A48A9D071F570B4AB05F640500FB7337AA9ED6DE04C2AACB113549E","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/75/186961769_a083e2ba26_o.jpg"}}},{"name":"IngestionRouting","id":"StoOD6eP8T5yQK07wnrdqGwA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"HjbpD8-1_xtTT8BHVt9IPfnw","details":{"message":{"partnerId":"test-partner-id","masterId":"4A4099072A48A9D071F570B4AB05F640500FB7337AA9ED6DE04C2AACB113549E","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/75/186961769_a083e2ba26_o.jpg"}}}},"contextId":"xBvZ7wK3dnvzZIkmAxj3e_7R"}}
+frontend_1 | 2018-01-31T12:01:12.448858285Z {"@timestamp":"2018-01-31T12:01:12.448+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"HjbpD8-1_xtTT8BHVt9IPfnw","details":{"message":{"partnerId":"test-partner-id","masterId":"4A4099072A48A9D071F570B4AB05F640500FB7337AA9ED6DE04C2AACB113549E","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/75/186961769_a083e2ba26_o.jpg"}}},{"name":"IngestionRouting","id":"StoOD6eP8T5yQK07wnrdqGwA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"HjbpD8-1_xtTT8BHVt9IPfnw","details":{"message":{"partnerId":"test-partner-id","masterId":"4A4099072A48A9D071F570B4AB05F640500FB7337AA9ED6DE04C2AACB113549E","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/75/186961769_a083e2ba26_o.jpg"}}}},"contextId":"xBvZ7wK3dnvzZIkmAxj3e_7R"}}
+frontend_1 | 2018-01-31T12:01:12.449367876Z {"@timestamp":"2018-01-31T12:01:12.449+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"x8-ovXlfysbnhHbMQsj6KSdX","details":{}},{"name":"IngestionRouting","id":"3WenIMA4ZO1rSEl2eqbNXYRR","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"x8-ovXlfysbnhHbMQsj6KSdX","details":{}}},"contextId":"ivbGmZihYg_lks6oHqgiSat1"}}
+frontend_1 | 2018-01-31T12:01:12.449770544Z {"@timestamp":"2018-01-31T12:01:12.449+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"x8-ovXlfysbnhHbMQsj6KSdX","details":{}},{"name":"IngestionRouting","id":"3WenIMA4ZO1rSEl2eqbNXYRR","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"x8-ovXlfysbnhHbMQsj6KSdX","details":{}}},"contextId":"ivbGmZihYg_lks6oHqgiSat1"}}
+frontend_1 | 2018-01-31T12:01:12.450388444Z {"@timestamp":"2018-01-31T12:01:12.450+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"x8-ovXlfysbnhHbMQsj6KSdX","details":{}},{"name":"IngestionRouting","id":"3WenIMA4ZO1rSEl2eqbNXYRR","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"ivbGmZihYg_lks6oHqgiSat1"}}
+frontend_1 | 2018-01-31T12:01:12.519532063Z {"@timestamp":"2018-01-31T12:01:12.519+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"HjbpD8-1_xtTT8BHVt9IPfnw","details":{"message":{"partnerId":"test-partner-id","masterId":"4A4099072A48A9D071F570B4AB05F640500FB7337AA9ED6DE04C2AACB113549E","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/75/186961769_a083e2ba26_o.jpg"}}},{"name":"IngestionRouting","id":"StoOD6eP8T5yQK07wnrdqGwA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(66f5fbed-abfb-f2e5-3b8b-c283d5159f0c)"},"contextId":"xBvZ7wK3dnvzZIkmAxj3e_7R"}}
+frontend_1 | 2018-01-31T12:01:12.548822993Z {"@timestamp":"2018-01-31T12:01:12.548+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"x8-ovXlfysbnhHbMQsj6KSdX","details":{}},{"name":"IngestionRouting","id":"3WenIMA4ZO1rSEl2eqbNXYRR","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"ivbGmZihYg_lks6oHqgiSat1"}}
+frontend_1 | 2018-01-31T12:01:12.550498152Z {"@timestamp":"2018-01-31T12:01:12.550+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:13.430382884Z {"@timestamp":"2018-01-31T12:01:13.429+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"3diln7tJxhnkA5WpgO3A8bfA","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"Kiuod9XngifYU7-yRXCaQFIv"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"3diln7tJxhnkA5WpgO3A8bfA","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"Kiuod9XngifYU7-yRXCaQFIv"}}},"contextId":"1MwYQf2acpLiJUkErr-bcXVp"}}
+frontend_1 | 2018-01-31T12:01:13.431440454Z {"@timestamp":"2018-01-31T12:01:13.430+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"ZaUvKVPqPej3MnXziNuMBhdb","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"ZaUvKVPqPej3MnXziNuMBhdb","details":{"partnerId":"test-partner-id"}}},"contextId":"1MwYQf2acpLiJUkErr-bcXVp"}}
+frontend_1 | 2018-01-31T12:01:13.432791324Z {"@timestamp":"2018-01-31T12:01:13.432+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"ZaUvKVPqPej3MnXziNuMBhdb","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"ZaUvKVPqPej3MnXziNuMBhdb","details":{"partnerId":"test-partner-id"}}},"contextId":"1MwYQf2acpLiJUkErr-bcXVp"}}
+frontend_1 | 2018-01-31T12:01:13.433584894Z {"@timestamp":"2018-01-31T12:01:13.433+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"3diln7tJxhnkA5WpgO3A8bfA","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"Kiuod9XngifYU7-yRXCaQFIv"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"3diln7tJxhnkA5WpgO3A8bfA","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"Kiuod9XngifYU7-yRXCaQFIv"}}},"contextId":"1MwYQf2acpLiJUkErr-bcXVp"}}
+frontend_1 | 2018-01-31T12:01:13.437025365Z {"@timestamp":"2018-01-31T12:01:13.436+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"n3e7E1lbaalXhR-BtM9wMO15","details":{"endpoint":"GET /health","transactionId":"NUrLWGvczmCGHFHwkNlkdMRE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"n3e7E1lbaalXhR-BtM9wMO15","details":{"endpoint":"GET /health","transactionId":"NUrLWGvczmCGHFHwkNlkdMRE"}}},"contextId":"ecqG4eQI5rwwzUJKEvA5amnh"}}
+frontend_1 | 2018-01-31T12:01:13.437187264Z {"@timestamp":"2018-01-31T12:01:13.436+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"Q_jfddkTbwTwOJhthavpfsVA","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8588/16104689516_67dd5c749c_o.jpg"}}},{"name":"IngestionRouting","id":"ZaUvKVPqPej3MnXziNuMBhdb","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"Q_jfddkTbwTwOJhthavpfsVA","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8588/16104689516_67dd5c749c_o.jpg"}}}},"contextId":"1MwYQf2acpLiJUkErr-bcXVp"}}
+frontend_1 | 2018-01-31T12:01:13.437507234Z {"@timestamp":"2018-01-31T12:01:13.437+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"n3e7E1lbaalXhR-BtM9wMO15","details":{"endpoint":"GET /health","transactionId":"NUrLWGvczmCGHFHwkNlkdMRE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"n3e7E1lbaalXhR-BtM9wMO15","details":{"endpoint":"GET /health","transactionId":"NUrLWGvczmCGHFHwkNlkdMRE"}}},"contextId":"ecqG4eQI5rwwzUJKEvA5amnh"}}
+frontend_1 | 2018-01-31T12:01:13.445785058Z {"@timestamp":"2018-01-31T12:01:13.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"Q_jfddkTbwTwOJhthavpfsVA","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8588/16104689516_67dd5c749c_o.jpg"}}},{"name":"IngestionRouting","id":"ZaUvKVPqPej3MnXziNuMBhdb","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"Q_jfddkTbwTwOJhthavpfsVA","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8588/16104689516_67dd5c749c_o.jpg"}}}},"contextId":"1MwYQf2acpLiJUkErr-bcXVp"}}
+frontend_1 | 2018-01-31T12:01:13.446784242Z {"@timestamp":"2018-01-31T12:01:13.446+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"RC4H9pV2dqhiqFKw3BmcIC1u","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"JoHeZ-XMiy3jM7AwyvGUb1e5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"RC4H9pV2dqhiqFKw3BmcIC1u","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"JoHeZ-XMiy3jM7AwyvGUb1e5"}}},"contextId":"QRU1YGrzdoidiaYGZ0DcaTk8"}}
+frontend_1 | 2018-01-31T12:01:13.447496419Z {"@timestamp":"2018-01-31T12:01:13.447+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"4kmVzKfaB2dlNeKU77oevU3a","details":{"message":{"partnerId":"test-partner-id","masterId":"54EE04DC5FC5E29254A5ABA1A031260100378349F106F0A09DD970FFEB0D387A","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8588/16104689516_67dd5c749c_o.jpg"}}},{"name":"IngestionRouting","id":"ZaUvKVPqPej3MnXziNuMBhdb","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"4kmVzKfaB2dlNeKU77oevU3a","details":{"message":{"partnerId":"test-partner-id","masterId":"54EE04DC5FC5E29254A5ABA1A031260100378349F106F0A09DD970FFEB0D387A","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8588/16104689516_67dd5c749c_o.jpg"}}}},"contextId":"1MwYQf2acpLiJUkErr-bcXVp"}}
+frontend_1 | 2018-01-31T12:01:13.448064902Z {"@timestamp":"2018-01-31T12:01:13.447+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"i2bTfd_MYPkwuAeVHP0MUxUb","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"i2bTfd_MYPkwuAeVHP0MUxUb","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"QRU1YGrzdoidiaYGZ0DcaTk8"}}
+frontend_1 | 2018-01-31T12:01:13.448408562Z {"@timestamp":"2018-01-31T12:01:13.447+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"4kmVzKfaB2dlNeKU77oevU3a","details":{"message":{"partnerId":"test-partner-id","masterId":"54EE04DC5FC5E29254A5ABA1A031260100378349F106F0A09DD970FFEB0D387A","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8588/16104689516_67dd5c749c_o.jpg"}}},{"name":"IngestionRouting","id":"ZaUvKVPqPej3MnXziNuMBhdb","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"4kmVzKfaB2dlNeKU77oevU3a","details":{"message":{"partnerId":"test-partner-id","masterId":"54EE04DC5FC5E29254A5ABA1A031260100378349F106F0A09DD970FFEB0D387A","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8588/16104689516_67dd5c749c_o.jpg"}}}},"contextId":"1MwYQf2acpLiJUkErr-bcXVp"}}
+frontend_1 | 2018-01-31T12:01:13.451536996Z {"@timestamp":"2018-01-31T12:01:13.451+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"i2bTfd_MYPkwuAeVHP0MUxUb","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"i2bTfd_MYPkwuAeVHP0MUxUb","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"QRU1YGrzdoidiaYGZ0DcaTk8"}}
+frontend_1 | 2018-01-31T12:01:13.460597483Z {"@timestamp":"2018-01-31T12:01:13.460+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"RC4H9pV2dqhiqFKw3BmcIC1u","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"JoHeZ-XMiy3jM7AwyvGUb1e5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"RC4H9pV2dqhiqFKw3BmcIC1u","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"JoHeZ-XMiy3jM7AwyvGUb1e5"}}},"contextId":"QRU1YGrzdoidiaYGZ0DcaTk8"}}
+frontend_1 | 2018-01-31T12:01:13.469765792Z {"@timestamp":"2018-01-31T12:01:13.469+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"RyPiI2ZnGNTOTlDDZ2VxFBtP","details":{}},{"name":"IngestionRouting","id":"i2bTfd_MYPkwuAeVHP0MUxUb","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"RyPiI2ZnGNTOTlDDZ2VxFBtP","details":{}}},"contextId":"QRU1YGrzdoidiaYGZ0DcaTk8"}}
+frontend_1 | 2018-01-31T12:01:13.470153832Z {"@timestamp":"2018-01-31T12:01:13.469+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"RyPiI2ZnGNTOTlDDZ2VxFBtP","details":{}},{"name":"IngestionRouting","id":"i2bTfd_MYPkwuAeVHP0MUxUb","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"RyPiI2ZnGNTOTlDDZ2VxFBtP","details":{}}},"contextId":"QRU1YGrzdoidiaYGZ0DcaTk8"}}
+frontend_1 | 2018-01-31T12:01:13.470698101Z {"@timestamp":"2018-01-31T12:01:13.470+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"RyPiI2ZnGNTOTlDDZ2VxFBtP","details":{}},{"name":"IngestionRouting","id":"i2bTfd_MYPkwuAeVHP0MUxUb","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"QRU1YGrzdoidiaYGZ0DcaTk8"}}
+frontend_1 | 2018-01-31T12:01:13.509411586Z {"@timestamp":"2018-01-31T12:01:13.508+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"4kmVzKfaB2dlNeKU77oevU3a","details":{"message":{"partnerId":"test-partner-id","masterId":"54EE04DC5FC5E29254A5ABA1A031260100378349F106F0A09DD970FFEB0D387A","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8588/16104689516_67dd5c749c_o.jpg"}}},{"name":"IngestionRouting","id":"ZaUvKVPqPej3MnXziNuMBhdb","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(f9b6aca7-f692-b646-fcae-63e9f29ffae9)"},"contextId":"1MwYQf2acpLiJUkErr-bcXVp"}}
+frontend_1 | 2018-01-31T12:01:13.606494014Z {"@timestamp":"2018-01-31T12:01:13.599+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"RyPiI2ZnGNTOTlDDZ2VxFBtP","details":{}},{"name":"IngestionRouting","id":"i2bTfd_MYPkwuAeVHP0MUxUb","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"QRU1YGrzdoidiaYGZ0DcaTk8"}}
+frontend_1 | 2018-01-31T12:01:13.611772022Z {"@timestamp":"2018-01-31T12:01:13.610+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:15.436701607Z {"@timestamp":"2018-01-31T12:01:15.436+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"HbMM-WhdaqOVZJ_sTREpvvcc","details":{"endpoint":"GET /health","transactionId":"C4KmaP6GegDYdXBu3RtWniqu"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"HbMM-WhdaqOVZJ_sTREpvvcc","details":{"endpoint":"GET /health","transactionId":"C4KmaP6GegDYdXBu3RtWniqu"}}},"contextId":"wUdIy32amfp2lrpNAcGtgI_P"}}
+frontend_1 | 2018-01-31T12:01:15.437135533Z {"@timestamp":"2018-01-31T12:01:15.436+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"HbMM-WhdaqOVZJ_sTREpvvcc","details":{"endpoint":"GET /health","transactionId":"C4KmaP6GegDYdXBu3RtWniqu"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"HbMM-WhdaqOVZJ_sTREpvvcc","details":{"endpoint":"GET /health","transactionId":"C4KmaP6GegDYdXBu3RtWniqu"}}},"contextId":"wUdIy32amfp2lrpNAcGtgI_P"}}
+frontend_1 | 2018-01-31T12:01:15.440822331Z {"@timestamp":"2018-01-31T12:01:15.437+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"C40jXZrq5B3Jk7S0WIOVBgyV","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"3d6IIZqxqmlD-QUW9anoNnlQ"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"C40jXZrq5B3Jk7S0WIOVBgyV","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"3d6IIZqxqmlD-QUW9anoNnlQ"}}},"contextId":"-1SKosauvklF2dQOz4s4W-s6"}}
+frontend_1 | 2018-01-31T12:01:15.443835991Z {"@timestamp":"2018-01-31T12:01:15.442+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"1IHPPyFSzzq-ymZzXxdT68PY","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"1IHPPyFSzzq-ymZzXxdT68PY","details":{"partnerId":"test-partner-id"}}},"contextId":"-1SKosauvklF2dQOz4s4W-s6"}}
+frontend_1 | 2018-01-31T12:01:15.445611286Z {"@timestamp":"2018-01-31T12:01:15.444+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"1IHPPyFSzzq-ymZzXxdT68PY","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"1IHPPyFSzzq-ymZzXxdT68PY","details":{"partnerId":"test-partner-id"}}},"contextId":"-1SKosauvklF2dQOz4s4W-s6"}}
+frontend_1 | 2018-01-31T12:01:15.445797341Z {"@timestamp":"2018-01-31T12:01:15.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"OdEgP-8JtOZ2D_HlkT4e3KYn","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"jY5H14v1L65ORycZ8SA8LSGa"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"OdEgP-8JtOZ2D_HlkT4e3KYn","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"jY5H14v1L65ORycZ8SA8LSGa"}}},"contextId":"QbMYi_E2ROsNcMpsAqoGDwq4"}}
+frontend_1 | 2018-01-31T12:01:15.446179105Z {"@timestamp":"2018-01-31T12:01:15.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"QsYBIZGDV_nQq1NOIAeVf2gd","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"QsYBIZGDV_nQq1NOIAeVf2gd","details":{"partnerId":"test-partner-id"}}},"contextId":"QbMYi_E2ROsNcMpsAqoGDwq4"}}
+frontend_1 | 2018-01-31T12:01:15.446482212Z {"@timestamp":"2018-01-31T12:01:15.446+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"QsYBIZGDV_nQq1NOIAeVf2gd","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"QsYBIZGDV_nQq1NOIAeVf2gd","details":{"partnerId":"test-partner-id"}}},"contextId":"QbMYi_E2ROsNcMpsAqoGDwq4"}}
+frontend_1 | 2018-01-31T12:01:15.446715648Z {"@timestamp":"2018-01-31T12:01:15.446+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"OdEgP-8JtOZ2D_HlkT4e3KYn","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"jY5H14v1L65ORycZ8SA8LSGa"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"OdEgP-8JtOZ2D_HlkT4e3KYn","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"jY5H14v1L65ORycZ8SA8LSGa"}}},"contextId":"QbMYi_E2ROsNcMpsAqoGDwq4"}}
+frontend_1 | 2018-01-31T12:01:15.446846151Z {"@timestamp":"2018-01-31T12:01:15.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"C40jXZrq5B3Jk7S0WIOVBgyV","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"3d6IIZqxqmlD-QUW9anoNnlQ"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"C40jXZrq5B3Jk7S0WIOVBgyV","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"3d6IIZqxqmlD-QUW9anoNnlQ"}}},"contextId":"-1SKosauvklF2dQOz4s4W-s6"}}
+frontend_1 | 2018-01-31T12:01:15.454000498Z {"@timestamp":"2018-01-31T12:01:15.453+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"_dwl0pinl5tXCMpd03Dxz-x_","details":{}},{"name":"IngestionRouting","id":"QsYBIZGDV_nQq1NOIAeVf2gd","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"_dwl0pinl5tXCMpd03Dxz-x_","details":{}}},"contextId":"QbMYi_E2ROsNcMpsAqoGDwq4"}}
+frontend_1 | 2018-01-31T12:01:15.454372656Z {"@timestamp":"2018-01-31T12:01:15.451+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"Zoqd3A8yn-vEcOmyX4vmsE1H","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/8/7875508_ade9ddd16b_o.jpg"}}},{"name":"IngestionRouting","id":"1IHPPyFSzzq-ymZzXxdT68PY","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"Zoqd3A8yn-vEcOmyX4vmsE1H","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/8/7875508_ade9ddd16b_o.jpg"}}}},"contextId":"-1SKosauvklF2dQOz4s4W-s6"}}
+frontend_1 | 2018-01-31T12:01:15.454799189Z {"@timestamp":"2018-01-31T12:01:15.454+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"_dwl0pinl5tXCMpd03Dxz-x_","details":{}},{"name":"IngestionRouting","id":"QsYBIZGDV_nQq1NOIAeVf2gd","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"_dwl0pinl5tXCMpd03Dxz-x_","details":{}}},"contextId":"QbMYi_E2ROsNcMpsAqoGDwq4"}}
+frontend_1 | 2018-01-31T12:01:15.456069582Z {"@timestamp":"2018-01-31T12:01:15.455+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"Zoqd3A8yn-vEcOmyX4vmsE1H","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/8/7875508_ade9ddd16b_o.jpg"}}},{"name":"IngestionRouting","id":"1IHPPyFSzzq-ymZzXxdT68PY","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"Zoqd3A8yn-vEcOmyX4vmsE1H","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/8/7875508_ade9ddd16b_o.jpg"}}}},"contextId":"-1SKosauvklF2dQOz4s4W-s6"}}
+frontend_1 | 2018-01-31T12:01:15.458731116Z {"@timestamp":"2018-01-31T12:01:15.458+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"_dwl0pinl5tXCMpd03Dxz-x_","details":{}},{"name":"IngestionRouting","id":"QsYBIZGDV_nQq1NOIAeVf2gd","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"QbMYi_E2ROsNcMpsAqoGDwq4"}}
+frontend_1 | 2018-01-31T12:01:15.459440030Z {"@timestamp":"2018-01-31T12:01:15.459+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"ibxrSaWXL54RQ2HxfP2ccWLS","details":{"message":{"partnerId":"test-partner-id","masterId":"983C512DA9D4B362C7782D85DBFBF49CFC65CDC0EF4287A338CFDF3A63F6EFE2","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/8/7875508_ade9ddd16b_o.jpg"}}},{"name":"IngestionRouting","id":"1IHPPyFSzzq-ymZzXxdT68PY","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"ibxrSaWXL54RQ2HxfP2ccWLS","details":{"message":{"partnerId":"test-partner-id","masterId":"983C512DA9D4B362C7782D85DBFBF49CFC65CDC0EF4287A338CFDF3A63F6EFE2","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/8/7875508_ade9ddd16b_o.jpg"}}}},"contextId":"-1SKosauvklF2dQOz4s4W-s6"}}
+frontend_1 | 2018-01-31T12:01:15.461537468Z {"@timestamp":"2018-01-31T12:01:15.461+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"ibxrSaWXL54RQ2HxfP2ccWLS","details":{"message":{"partnerId":"test-partner-id","masterId":"983C512DA9D4B362C7782D85DBFBF49CFC65CDC0EF4287A338CFDF3A63F6EFE2","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/8/7875508_ade9ddd16b_o.jpg"}}},{"name":"IngestionRouting","id":"1IHPPyFSzzq-ymZzXxdT68PY","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"ibxrSaWXL54RQ2HxfP2ccWLS","details":{"message":{"partnerId":"test-partner-id","masterId":"983C512DA9D4B362C7782D85DBFBF49CFC65CDC0EF4287A338CFDF3A63F6EFE2","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/8/7875508_ade9ddd16b_o.jpg"}}}},"contextId":"-1SKosauvklF2dQOz4s4W-s6"}}
+frontend_1 | 2018-01-31T12:01:15.539257706Z {"@timestamp":"2018-01-31T12:01:15.538+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"ibxrSaWXL54RQ2HxfP2ccWLS","details":{"message":{"partnerId":"test-partner-id","masterId":"983C512DA9D4B362C7782D85DBFBF49CFC65CDC0EF4287A338CFDF3A63F6EFE2","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/8/7875508_ade9ddd16b_o.jpg"}}},{"name":"IngestionRouting","id":"1IHPPyFSzzq-ymZzXxdT68PY","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(b9ba6424-2171-b9c7-890e-42f530a709d1)"},"contextId":"-1SKosauvklF2dQOz4s4W-s6"}}
+frontend_1 | 2018-01-31T12:01:15.629074096Z {"@timestamp":"2018-01-31T12:01:15.628+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"_dwl0pinl5tXCMpd03Dxz-x_","details":{}},{"name":"IngestionRouting","id":"QsYBIZGDV_nQq1NOIAeVf2gd","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"QbMYi_E2ROsNcMpsAqoGDwq4"}}
+frontend_1 | 2018-01-31T12:01:15.631528722Z {"@timestamp":"2018-01-31T12:01:15.630+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:16.429815439Z {"@timestamp":"2018-01-31T12:01:16.429+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"r_Z5hsK7amVH0PTES-rPbRlc","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"RMTZUpA7FNOwnRz53KDDGMEt"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"r_Z5hsK7amVH0PTES-rPbRlc","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"RMTZUpA7FNOwnRz53KDDGMEt"}}},"contextId":"_EEd-8VPPS4qWdad8ImRLv5f"}}
+frontend_1 | 2018-01-31T12:01:16.434305911Z {"@timestamp":"2018-01-31T12:01:16.432+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"uj_aBXdo67mX9crvHfy7xMDx","details":{"endpoint":"GET /health","transactionId":"cJRAxixAZSQXMvwWKvWA8DnC"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"uj_aBXdo67mX9crvHfy7xMDx","details":{"endpoint":"GET /health","transactionId":"cJRAxixAZSQXMvwWKvWA8DnC"}}},"contextId":"q7g-nFDo_jqc6AKtmCZseIc2"}}
+frontend_1 | 2018-01-31T12:01:16.434337520Z {"@timestamp":"2018-01-31T12:01:16.433+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"uj_aBXdo67mX9crvHfy7xMDx","details":{"endpoint":"GET /health","transactionId":"cJRAxixAZSQXMvwWKvWA8DnC"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"uj_aBXdo67mX9crvHfy7xMDx","details":{"endpoint":"GET /health","transactionId":"cJRAxixAZSQXMvwWKvWA8DnC"}}},"contextId":"q7g-nFDo_jqc6AKtmCZseIc2"}}
+frontend_1 | 2018-01-31T12:01:16.437938365Z {"@timestamp":"2018-01-31T12:01:16.437+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"j2cvc6PeG0qtNH_8OIu33-NA","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"j2cvc6PeG0qtNH_8OIu33-NA","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"_EEd-8VPPS4qWdad8ImRLv5f"}}
+frontend_1 | 2018-01-31T12:01:16.439876578Z {"@timestamp":"2018-01-31T12:01:16.439+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"j2cvc6PeG0qtNH_8OIu33-NA","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"j2cvc6PeG0qtNH_8OIu33-NA","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"_EEd-8VPPS4qWdad8ImRLv5f"}}
+frontend_1 | 2018-01-31T12:01:16.443071900Z {"@timestamp":"2018-01-31T12:01:16.442+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"r_Z5hsK7amVH0PTES-rPbRlc","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"RMTZUpA7FNOwnRz53KDDGMEt"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"r_Z5hsK7amVH0PTES-rPbRlc","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"RMTZUpA7FNOwnRz53KDDGMEt"}}},"contextId":"_EEd-8VPPS4qWdad8ImRLv5f"}}
+frontend_1 | 2018-01-31T12:01:16.444883441Z {"@timestamp":"2018-01-31T12:01:16.444+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"5arAlV050ShZNxWVL4D4Ksd8","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/8220/8258473310_864a51fc87_o.jpg"}}},{"name":"IngestionRouting","id":"j2cvc6PeG0qtNH_8OIu33-NA","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"5arAlV050ShZNxWVL4D4Ksd8","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/8220/8258473310_864a51fc87_o.jpg"}}}},"contextId":"_EEd-8VPPS4qWdad8ImRLv5f"}}
+frontend_1 | 2018-01-31T12:01:16.446447164Z {"@timestamp":"2018-01-31T12:01:16.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"5arAlV050ShZNxWVL4D4Ksd8","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/8220/8258473310_864a51fc87_o.jpg"}}},{"name":"IngestionRouting","id":"j2cvc6PeG0qtNH_8OIu33-NA","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"5arAlV050ShZNxWVL4D4Ksd8","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/8220/8258473310_864a51fc87_o.jpg"}}}},"contextId":"_EEd-8VPPS4qWdad8ImRLv5f"}}
+frontend_1 | 2018-01-31T12:01:16.461310743Z {"@timestamp":"2018-01-31T12:01:16.460+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"YEeRnwGo-qmQxw68-slVRHNd","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"FF1670C526BEDD5272167740341D58B819AD97690E050F9EA123943E553588D4","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/8220/8258473310_864a51fc87_o.jpg"}}},{"name":"IngestionRouting","id":"j2cvc6PeG0qtNH_8OIu33-NA","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"YEeRnwGo-qmQxw68-slVRHNd","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"FF1670C526BEDD5272167740341D58B819AD97690E050F9EA123943E553588D4","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/8220/8258473310_864a51fc87_o.jpg"}}}},"contextId":"_EEd-8VPPS4qWdad8ImRLv5f"}}
+frontend_1 | 2018-01-31T12:01:16.470592829Z {"@timestamp":"2018-01-31T12:01:16.468+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"YEeRnwGo-qmQxw68-slVRHNd","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"FF1670C526BEDD5272167740341D58B819AD97690E050F9EA123943E553588D4","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/8220/8258473310_864a51fc87_o.jpg"}}},{"name":"IngestionRouting","id":"j2cvc6PeG0qtNH_8OIu33-NA","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"YEeRnwGo-qmQxw68-slVRHNd","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"FF1670C526BEDD5272167740341D58B819AD97690E050F9EA123943E553588D4","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/8220/8258473310_864a51fc87_o.jpg"}}}},"contextId":"_EEd-8VPPS4qWdad8ImRLv5f"}}
+frontend_1 | 2018-01-31T12:01:16.487662001Z {"@timestamp":"2018-01-31T12:01:16.485+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"st9AZv4eagEhLyCyC65Xvb87","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"tA4XH8qPhiQwSQCZkv5jWgKy"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"st9AZv4eagEhLyCyC65Xvb87","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"tA4XH8qPhiQwSQCZkv5jWgKy"}}},"contextId":"i45AlkIG5InKrefFSH2Vb4UI"}}
+frontend_1 | 2018-01-31T12:01:16.488344631Z {"@timestamp":"2018-01-31T12:01:16.487+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"cAWHAo_-8SW7TCiVis0bnMv0","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"cAWHAo_-8SW7TCiVis0bnMv0","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"i45AlkIG5InKrefFSH2Vb4UI"}}
+frontend_1 | 2018-01-31T12:01:16.488734839Z {"@timestamp":"2018-01-31T12:01:16.488+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"cAWHAo_-8SW7TCiVis0bnMv0","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"cAWHAo_-8SW7TCiVis0bnMv0","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"i45AlkIG5InKrefFSH2Vb4UI"}}
+frontend_1 | 2018-01-31T12:01:16.491215217Z {"@timestamp":"2018-01-31T12:01:16.490+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"st9AZv4eagEhLyCyC65Xvb87","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"tA4XH8qPhiQwSQCZkv5jWgKy"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"st9AZv4eagEhLyCyC65Xvb87","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"tA4XH8qPhiQwSQCZkv5jWgKy"}}},"contextId":"i45AlkIG5InKrefFSH2Vb4UI"}}
+frontend_1 | 2018-01-31T12:01:16.509585824Z {"@timestamp":"2018-01-31T12:01:16.509+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"NjzF1dOvETT2FViPG-k1mzqh","details":{}},{"name":"IngestionRouting","id":"cAWHAo_-8SW7TCiVis0bnMv0","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"NjzF1dOvETT2FViPG-k1mzqh","details":{}}},"contextId":"i45AlkIG5InKrefFSH2Vb4UI"}}
+frontend_1 | 2018-01-31T12:01:16.510015811Z {"@timestamp":"2018-01-31T12:01:16.509+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"NjzF1dOvETT2FViPG-k1mzqh","details":{}},{"name":"IngestionRouting","id":"cAWHAo_-8SW7TCiVis0bnMv0","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"NjzF1dOvETT2FViPG-k1mzqh","details":{}}},"contextId":"i45AlkIG5InKrefFSH2Vb4UI"}}
+frontend_1 | 2018-01-31T12:01:16.510953127Z {"@timestamp":"2018-01-31T12:01:16.510+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"NjzF1dOvETT2FViPG-k1mzqh","details":{}},{"name":"IngestionRouting","id":"cAWHAo_-8SW7TCiVis0bnMv0","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"i45AlkIG5InKrefFSH2Vb4UI"}}
+frontend_1 | 2018-01-31T12:01:16.560073476Z {"@timestamp":"2018-01-31T12:01:16.559+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"YEeRnwGo-qmQxw68-slVRHNd","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"FF1670C526BEDD5272167740341D58B819AD97690E050F9EA123943E553588D4","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/8220/8258473310_864a51fc87_o.jpg"}}},{"name":"IngestionRouting","id":"j2cvc6PeG0qtNH_8OIu33-NA","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(1de58dcd-a665-37d9-26ad-60037952fe61)"},"contextId":"_EEd-8VPPS4qWdad8ImRLv5f"}}
+frontend_1 | 2018-01-31T12:01:16.599174214Z {"@timestamp":"2018-01-31T12:01:16.598+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"NjzF1dOvETT2FViPG-k1mzqh","details":{}},{"name":"IngestionRouting","id":"cAWHAo_-8SW7TCiVis0bnMv0","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"i45AlkIG5InKrefFSH2Vb4UI"}}
+frontend_1 | 2018-01-31T12:01:16.601756766Z {"@timestamp":"2018-01-31T12:01:16.601+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:17.432711307Z {"@timestamp":"2018-01-31T12:01:17.431+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"spl92tRgwheR-hGdP_MxH-SW","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"oasH9xuFHpat5mB6T955ZNad"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"spl92tRgwheR-hGdP_MxH-SW","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"oasH9xuFHpat5mB6T955ZNad"}}},"contextId":"NMooMnDSPSTdzWBl9c5_0z_W"}}
+frontend_1 | 2018-01-31T12:01:17.434175871Z {"@timestamp":"2018-01-31T12:01:17.433+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"ZSK3uKhEKod7OL354L-G3ZXK","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"ZSK3uKhEKod7OL354L-G3ZXK","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"NMooMnDSPSTdzWBl9c5_0z_W"}}
+frontend_1 | 2018-01-31T12:01:17.435614733Z {"@timestamp":"2018-01-31T12:01:17.434+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"ZSK3uKhEKod7OL354L-G3ZXK","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"ZSK3uKhEKod7OL354L-G3ZXK","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"NMooMnDSPSTdzWBl9c5_0z_W"}}
+frontend_1 | 2018-01-31T12:01:17.436315977Z {"@timestamp":"2018-01-31T12:01:17.435+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"spl92tRgwheR-hGdP_MxH-SW","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"oasH9xuFHpat5mB6T955ZNad"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"spl92tRgwheR-hGdP_MxH-SW","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"oasH9xuFHpat5mB6T955ZNad"}}},"contextId":"NMooMnDSPSTdzWBl9c5_0z_W"}}
+frontend_1 | 2018-01-31T12:01:17.439476356Z {"@timestamp":"2018-01-31T12:01:17.438+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"4i4gfcfbWmE9Ps7C1cNHrmIt","details":{"request":{"client":"test","metadata":{},"reference":"https://c3.staticflickr.com/1/175/452064450_782bc5d5d5_o.jpg"}}},{"name":"IngestionRouting","id":"ZSK3uKhEKod7OL354L-G3ZXK","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"4i4gfcfbWmE9Ps7C1cNHrmIt","details":{"request":{"client":"test","metadata":{},"reference":"https://c3.staticflickr.com/1/175/452064450_782bc5d5d5_o.jpg"}}}},"contextId":"NMooMnDSPSTdzWBl9c5_0z_W"}}
+frontend_1 | 2018-01-31T12:01:17.443824951Z {"@timestamp":"2018-01-31T12:01:17.443+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"3t2iuJWva9Xa6Wb03V9LtHfg","details":{"endpoint":"GET /health","transactionId":"QyEOZBb3PlIIKxnZCdC5myaF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"3t2iuJWva9Xa6Wb03V9LtHfg","details":{"endpoint":"GET /health","transactionId":"QyEOZBb3PlIIKxnZCdC5myaF"}}},"contextId":"12fLZzIWtSD18UqHng3mXSBN"}}
+frontend_1 | 2018-01-31T12:01:17.444021044Z {"@timestamp":"2018-01-31T12:01:17.443+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"4i4gfcfbWmE9Ps7C1cNHrmIt","details":{"request":{"client":"test","metadata":{},"reference":"https://c3.staticflickr.com/1/175/452064450_782bc5d5d5_o.jpg"}}},{"name":"IngestionRouting","id":"ZSK3uKhEKod7OL354L-G3ZXK","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"4i4gfcfbWmE9Ps7C1cNHrmIt","details":{"request":{"client":"test","metadata":{},"reference":"https://c3.staticflickr.com/1/175/452064450_782bc5d5d5_o.jpg"}}}},"contextId":"NMooMnDSPSTdzWBl9c5_0z_W"}}
+frontend_1 | 2018-01-31T12:01:17.444054963Z {"@timestamp":"2018-01-31T12:01:17.443+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"3t2iuJWva9Xa6Wb03V9LtHfg","details":{"endpoint":"GET /health","transactionId":"QyEOZBb3PlIIKxnZCdC5myaF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"3t2iuJWva9Xa6Wb03V9LtHfg","details":{"endpoint":"GET /health","transactionId":"QyEOZBb3PlIIKxnZCdC5myaF"}}},"contextId":"12fLZzIWtSD18UqHng3mXSBN"}}
+frontend_1 | 2018-01-31T12:01:17.444819557Z {"@timestamp":"2018-01-31T12:01:17.444+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"5-9FhXwIs88hRjClfoO5FeWV","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"F-arvRz9fCH2Dut_6FEtnUKK"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"5-9FhXwIs88hRjClfoO5FeWV","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"F-arvRz9fCH2Dut_6FEtnUKK"}}},"contextId":"l1wMOhovKzZXbAT57nRi2kEr"}}
+frontend_1 | 2018-01-31T12:01:17.445221498Z {"@timestamp":"2018-01-31T12:01:17.444+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"GbnoNlyVSc8ApDTgRdfc2itX","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"GbnoNlyVSc8ApDTgRdfc2itX","details":{"partnerId":"test-partner-id"}}},"contextId":"l1wMOhovKzZXbAT57nRi2kEr"}}
+frontend_1 | 2018-01-31T12:01:17.445495498Z {"@timestamp":"2018-01-31T12:01:17.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"GbnoNlyVSc8ApDTgRdfc2itX","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"GbnoNlyVSc8ApDTgRdfc2itX","details":{"partnerId":"test-partner-id"}}},"contextId":"l1wMOhovKzZXbAT57nRi2kEr"}}
+frontend_1 | 2018-01-31T12:01:17.445544251Z {"@timestamp":"2018-01-31T12:01:17.444+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"3e09qxn4KF2jNsAXgPozQs_k","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"E1A6E85A9A0B267AD6D6AB7E97FE73166E72C3E1B6168D24D5C5E3A45D4CFD72","client":"test","metadata":{},"reference":"https://c3.staticflickr.com/1/175/452064450_782bc5d5d5_o.jpg"}}},{"name":"IngestionRouting","id":"ZSK3uKhEKod7OL354L-G3ZXK","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"3e09qxn4KF2jNsAXgPozQs_k","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"E1A6E85A9A0B267AD6D6AB7E97FE73166E72C3E1B6168D24D5C5E3A45D4CFD72","client":"test","metadata":{},"reference":"https://c3.staticflickr.com/1/175/452064450_782bc5d5d5_o.jpg"}}}},"contextId":"NMooMnDSPSTdzWBl9c5_0z_W"}}
+frontend_1 | 2018-01-31T12:01:17.445859248Z {"@timestamp":"2018-01-31T12:01:17.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"5-9FhXwIs88hRjClfoO5FeWV","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"F-arvRz9fCH2Dut_6FEtnUKK"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"5-9FhXwIs88hRjClfoO5FeWV","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"F-arvRz9fCH2Dut_6FEtnUKK"}}},"contextId":"l1wMOhovKzZXbAT57nRi2kEr"}}
+frontend_1 | 2018-01-31T12:01:17.447313369Z {"@timestamp":"2018-01-31T12:01:17.446+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"3e09qxn4KF2jNsAXgPozQs_k","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"E1A6E85A9A0B267AD6D6AB7E97FE73166E72C3E1B6168D24D5C5E3A45D4CFD72","client":"test","metadata":{},"reference":"https://c3.staticflickr.com/1/175/452064450_782bc5d5d5_o.jpg"}}},{"name":"IngestionRouting","id":"ZSK3uKhEKod7OL354L-G3ZXK","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"3e09qxn4KF2jNsAXgPozQs_k","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"E1A6E85A9A0B267AD6D6AB7E97FE73166E72C3E1B6168D24D5C5E3A45D4CFD72","client":"test","metadata":{},"reference":"https://c3.staticflickr.com/1/175/452064450_782bc5d5d5_o.jpg"}}}},"contextId":"NMooMnDSPSTdzWBl9c5_0z_W"}}
+frontend_1 | 2018-01-31T12:01:17.460871850Z {"@timestamp":"2018-01-31T12:01:17.459+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"kgXEkc_IGekaTkqAaOCfWUFQ","details":{}},{"name":"IngestionRouting","id":"GbnoNlyVSc8ApDTgRdfc2itX","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"kgXEkc_IGekaTkqAaOCfWUFQ","details":{}}},"contextId":"l1wMOhovKzZXbAT57nRi2kEr"}}
+frontend_1 | 2018-01-31T12:01:17.461290860Z {"@timestamp":"2018-01-31T12:01:17.461+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"kgXEkc_IGekaTkqAaOCfWUFQ","details":{}},{"name":"IngestionRouting","id":"GbnoNlyVSc8ApDTgRdfc2itX","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"kgXEkc_IGekaTkqAaOCfWUFQ","details":{}}},"contextId":"l1wMOhovKzZXbAT57nRi2kEr"}}
+frontend_1 | 2018-01-31T12:01:17.462672240Z {"@timestamp":"2018-01-31T12:01:17.462+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"kgXEkc_IGekaTkqAaOCfWUFQ","details":{}},{"name":"IngestionRouting","id":"GbnoNlyVSc8ApDTgRdfc2itX","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"l1wMOhovKzZXbAT57nRi2kEr"}}
+frontend_1 | 2018-01-31T12:01:17.509118842Z {"@timestamp":"2018-01-31T12:01:17.508+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"3e09qxn4KF2jNsAXgPozQs_k","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"E1A6E85A9A0B267AD6D6AB7E97FE73166E72C3E1B6168D24D5C5E3A45D4CFD72","client":"test","metadata":{},"reference":"https://c3.staticflickr.com/1/175/452064450_782bc5d5d5_o.jpg"}}},{"name":"IngestionRouting","id":"ZSK3uKhEKod7OL354L-G3ZXK","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(81ded1f7-4fdb-db45-a994-366b3ec96837)"},"contextId":"NMooMnDSPSTdzWBl9c5_0z_W"}}
+frontend_1 | 2018-01-31T12:01:17.628935235Z {"@timestamp":"2018-01-31T12:01:17.628+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"kgXEkc_IGekaTkqAaOCfWUFQ","details":{}},{"name":"IngestionRouting","id":"GbnoNlyVSc8ApDTgRdfc2itX","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"l1wMOhovKzZXbAT57nRi2kEr"}}
+frontend_1 | 2018-01-31T12:01:17.630935070Z {"@timestamp":"2018-01-31T12:01:17.630+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:19.442303617Z {"@timestamp":"2018-01-31T12:01:19.441+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"sS8FyfWhm9CS5ADJsIeSgrdI","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"OFKXEX0CeC4uje4cbmTEi01U"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"sS8FyfWhm9CS5ADJsIeSgrdI","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"OFKXEX0CeC4uje4cbmTEi01U"}}},"contextId":"i0EVZty8bYk5b_-HG4gmU6Uo"}}
+frontend_1 | 2018-01-31T12:01:19.442862780Z {"@timestamp":"2018-01-31T12:01:19.440+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"v_4pTjHpAa_cKZmop6ohnZmi","details":{"endpoint":"GET /health","transactionId":"tGAVK9iXSLMJNIjm9zNQiDJj"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"v_4pTjHpAa_cKZmop6ohnZmi","details":{"endpoint":"GET /health","transactionId":"tGAVK9iXSLMJNIjm9zNQiDJj"}}},"contextId":"0mQTWb0gjl9gtY9XS3ueG5Bu"}}
+frontend_1 | 2018-01-31T12:01:19.443669964Z {"@timestamp":"2018-01-31T12:01:19.443+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"v_4pTjHpAa_cKZmop6ohnZmi","details":{"endpoint":"GET /health","transactionId":"tGAVK9iXSLMJNIjm9zNQiDJj"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"v_4pTjHpAa_cKZmop6ohnZmi","details":{"endpoint":"GET /health","transactionId":"tGAVK9iXSLMJNIjm9zNQiDJj"}}},"contextId":"0mQTWb0gjl9gtY9XS3ueG5Bu"}}
+frontend_1 | 2018-01-31T12:01:19.447756944Z {"@timestamp":"2018-01-31T12:01:19.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"AvI3EXrUPPVpysNJ5YjXIbD9","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"AvI3EXrUPPVpysNJ5YjXIbD9","details":{"partnerId":"test-partner-id"}}},"contextId":"i0EVZty8bYk5b_-HG4gmU6Uo"}}
+frontend_1 | 2018-01-31T12:01:19.448253361Z {"@timestamp":"2018-01-31T12:01:19.447+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"PcfSgwRz4PdCumUVYDX0oE-r","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"rrjGlfcYYQpUy_pEWpJENlLD"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"PcfSgwRz4PdCumUVYDX0oE-r","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"rrjGlfcYYQpUy_pEWpJENlLD"}}},"contextId":"kmsxVBcIS68d6qWRzJMkYQDW"}}
+frontend_1 | 2018-01-31T12:01:19.448731539Z {"@timestamp":"2018-01-31T12:01:19.447+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"AvI3EXrUPPVpysNJ5YjXIbD9","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"AvI3EXrUPPVpysNJ5YjXIbD9","details":{"partnerId":"test-partner-id"}}},"contextId":"i0EVZty8bYk5b_-HG4gmU6Uo"}}
+frontend_1 | 2018-01-31T12:01:19.448802867Z {"@timestamp":"2018-01-31T12:01:19.448+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"nZmgxi9AFIX8om_2SX9IW-1N","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"nZmgxi9AFIX8om_2SX9IW-1N","details":{"partnerId":"test-partner-id"}}},"contextId":"kmsxVBcIS68d6qWRzJMkYQDW"}}
+frontend_1 | 2018-01-31T12:01:19.449258293Z {"@timestamp":"2018-01-31T12:01:19.448+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"nZmgxi9AFIX8om_2SX9IW-1N","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"nZmgxi9AFIX8om_2SX9IW-1N","details":{"partnerId":"test-partner-id"}}},"contextId":"kmsxVBcIS68d6qWRzJMkYQDW"}}
+frontend_1 | 2018-01-31T12:01:19.450557401Z {"@timestamp":"2018-01-31T12:01:19.449+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"sS8FyfWhm9CS5ADJsIeSgrdI","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"OFKXEX0CeC4uje4cbmTEi01U"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"sS8FyfWhm9CS5ADJsIeSgrdI","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"OFKXEX0CeC4uje4cbmTEi01U"}}},"contextId":"i0EVZty8bYk5b_-HG4gmU6Uo"}}
+frontend_1 | 2018-01-31T12:01:19.451069568Z {"@timestamp":"2018-01-31T12:01:19.449+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"PcfSgwRz4PdCumUVYDX0oE-r","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"rrjGlfcYYQpUy_pEWpJENlLD"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"PcfSgwRz4PdCumUVYDX0oE-r","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"rrjGlfcYYQpUy_pEWpJENlLD"}}},"contextId":"kmsxVBcIS68d6qWRzJMkYQDW"}}
+frontend_1 | 2018-01-31T12:01:19.454801851Z {"@timestamp":"2018-01-31T12:01:19.454+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"W5f1tz1EzTJBKH27rm1j1jwB","details":{"request":{"client":"test","metadata":{},"reference":"https://c4.staticflickr.com/4/3076/2707137956_a402d9cc85_o.jpg"}}},{"name":"IngestionRouting","id":"AvI3EXrUPPVpysNJ5YjXIbD9","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"W5f1tz1EzTJBKH27rm1j1jwB","details":{"request":{"client":"test","metadata":{},"reference":"https://c4.staticflickr.com/4/3076/2707137956_a402d9cc85_o.jpg"}}}},"contextId":"i0EVZty8bYk5b_-HG4gmU6Uo"}}
+frontend_1 | 2018-01-31T12:01:19.456265834Z {"@timestamp":"2018-01-31T12:01:19.455+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"W5f1tz1EzTJBKH27rm1j1jwB","details":{"request":{"client":"test","metadata":{},"reference":"https://c4.staticflickr.com/4/3076/2707137956_a402d9cc85_o.jpg"}}},{"name":"IngestionRouting","id":"AvI3EXrUPPVpysNJ5YjXIbD9","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"W5f1tz1EzTJBKH27rm1j1jwB","details":{"request":{"client":"test","metadata":{},"reference":"https://c4.staticflickr.com/4/3076/2707137956_a402d9cc85_o.jpg"}}}},"contextId":"i0EVZty8bYk5b_-HG4gmU6Uo"}}
+frontend_1 | 2018-01-31T12:01:19.457751545Z {"@timestamp":"2018-01-31T12:01:19.456+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"xCJBXXQkbNP2NAxGuiKkyJvA","details":{"message":{"partnerId":"test-partner-id","masterId":"66311576EA533C5DC6191C9293A92DDCB82E6CC5C44EBE7CCBDC2E7C04CD1DAF","client":"test","metadata":{},"reference":"https://c4.staticflickr.com/4/3076/2707137956_a402d9cc85_o.jpg"}}},{"name":"IngestionRouting","id":"AvI3EXrUPPVpysNJ5YjXIbD9","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"xCJBXXQkbNP2NAxGuiKkyJvA","details":{"message":{"partnerId":"test-partner-id","masterId":"66311576EA533C5DC6191C9293A92DDCB82E6CC5C44EBE7CCBDC2E7C04CD1DAF","client":"test","metadata":{},"reference":"https://c4.staticflickr.com/4/3076/2707137956_a402d9cc85_o.jpg"}}}},"contextId":"i0EVZty8bYk5b_-HG4gmU6Uo"}}
+frontend_1 | 2018-01-31T12:01:19.460097859Z {"@timestamp":"2018-01-31T12:01:19.459+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"7qtcw9ciXIzcjCufCmwrLLtI","details":{}},{"name":"IngestionRouting","id":"nZmgxi9AFIX8om_2SX9IW-1N","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"7qtcw9ciXIzcjCufCmwrLLtI","details":{}}},"contextId":"kmsxVBcIS68d6qWRzJMkYQDW"}}
+frontend_1 | 2018-01-31T12:01:19.460378527Z {"@timestamp":"2018-01-31T12:01:19.460+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"7qtcw9ciXIzcjCufCmwrLLtI","details":{}},{"name":"IngestionRouting","id":"nZmgxi9AFIX8om_2SX9IW-1N","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"7qtcw9ciXIzcjCufCmwrLLtI","details":{}}},"contextId":"kmsxVBcIS68d6qWRzJMkYQDW"}}
+frontend_1 | 2018-01-31T12:01:19.460985031Z {"@timestamp":"2018-01-31T12:01:19.460+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"7qtcw9ciXIzcjCufCmwrLLtI","details":{}},{"name":"IngestionRouting","id":"nZmgxi9AFIX8om_2SX9IW-1N","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"kmsxVBcIS68d6qWRzJMkYQDW"}}
+frontend_1 | 2018-01-31T12:01:19.462311370Z {"@timestamp":"2018-01-31T12:01:19.461+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"xCJBXXQkbNP2NAxGuiKkyJvA","details":{"message":{"partnerId":"test-partner-id","masterId":"66311576EA533C5DC6191C9293A92DDCB82E6CC5C44EBE7CCBDC2E7C04CD1DAF","client":"test","metadata":{},"reference":"https://c4.staticflickr.com/4/3076/2707137956_a402d9cc85_o.jpg"}}},{"name":"IngestionRouting","id":"AvI3EXrUPPVpysNJ5YjXIbD9","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"xCJBXXQkbNP2NAxGuiKkyJvA","details":{"message":{"partnerId":"test-partner-id","masterId":"66311576EA533C5DC6191C9293A92DDCB82E6CC5C44EBE7CCBDC2E7C04CD1DAF","client":"test","metadata":{},"reference":"https://c4.staticflickr.com/4/3076/2707137956_a402d9cc85_o.jpg"}}}},"contextId":"i0EVZty8bYk5b_-HG4gmU6Uo"}}
+frontend_1 | 2018-01-31T12:01:19.540717768Z {"@timestamp":"2018-01-31T12:01:19.540+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"xCJBXXQkbNP2NAxGuiKkyJvA","details":{"message":{"partnerId":"test-partner-id","masterId":"66311576EA533C5DC6191C9293A92DDCB82E6CC5C44EBE7CCBDC2E7C04CD1DAF","client":"test","metadata":{},"reference":"https://c4.staticflickr.com/4/3076/2707137956_a402d9cc85_o.jpg"}}},{"name":"IngestionRouting","id":"AvI3EXrUPPVpysNJ5YjXIbD9","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(b283d4af-5a13-7e84-b66f-5a23774a1bd2)"},"contextId":"i0EVZty8bYk5b_-HG4gmU6Uo"}}
+frontend_1 | 2018-01-31T12:01:19.610159611Z {"@timestamp":"2018-01-31T12:01:19.609+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"7qtcw9ciXIzcjCufCmwrLLtI","details":{}},{"name":"IngestionRouting","id":"nZmgxi9AFIX8om_2SX9IW-1N","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"kmsxVBcIS68d6qWRzJMkYQDW"}}
+frontend_1 | 2018-01-31T12:01:19.616531809Z {"@timestamp":"2018-01-31T12:01:19.615+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:20.433633719Z {"@timestamp":"2018-01-31T12:01:20.432+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"2IsiQrLyU85gjeHXSayzPfIa","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"J9gKQq8Q1p0nvsPlOHbUZgxz"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"2IsiQrLyU85gjeHXSayzPfIa","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"J9gKQq8Q1p0nvsPlOHbUZgxz"}}},"contextId":"HBF_2VQogKRcM65cjdDJiK25"}}
+frontend_1 | 2018-01-31T12:01:20.434591704Z {"@timestamp":"2018-01-31T12:01:20.433+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"oNjZwMCwQxU_1t0xwylU51rd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"oNjZwMCwQxU_1t0xwylU51rd","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"HBF_2VQogKRcM65cjdDJiK25"}}
+frontend_1 | 2018-01-31T12:01:20.435176303Z {"@timestamp":"2018-01-31T12:01:20.434+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"oNjZwMCwQxU_1t0xwylU51rd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"oNjZwMCwQxU_1t0xwylU51rd","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"HBF_2VQogKRcM65cjdDJiK25"}}
+frontend_1 | 2018-01-31T12:01:20.435406291Z {"@timestamp":"2018-01-31T12:01:20.434+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"hwHAtmefcCwYLNQxRHiocBA4","details":{"endpoint":"GET /health","transactionId":"1rKdnxlcQa9k6Asc6qQ0Ktgs"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"hwHAtmefcCwYLNQxRHiocBA4","details":{"endpoint":"GET /health","transactionId":"1rKdnxlcQa9k6Asc6qQ0Ktgs"}}},"contextId":"wrxGmUNfPN9LjqYViCkOsf6O"}}
+frontend_1 | 2018-01-31T12:01:20.435770791Z {"@timestamp":"2018-01-31T12:01:20.435+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"2IsiQrLyU85gjeHXSayzPfIa","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"J9gKQq8Q1p0nvsPlOHbUZgxz"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"2IsiQrLyU85gjeHXSayzPfIa","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"J9gKQq8Q1p0nvsPlOHbUZgxz"}}},"contextId":"HBF_2VQogKRcM65cjdDJiK25"}}
+frontend_1 | 2018-01-31T12:01:20.436041217Z {"@timestamp":"2018-01-31T12:01:20.435+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"hwHAtmefcCwYLNQxRHiocBA4","details":{"endpoint":"GET /health","transactionId":"1rKdnxlcQa9k6Asc6qQ0Ktgs"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"hwHAtmefcCwYLNQxRHiocBA4","details":{"endpoint":"GET /health","transactionId":"1rKdnxlcQa9k6Asc6qQ0Ktgs"}}},"contextId":"wrxGmUNfPN9LjqYViCkOsf6O"}}
+frontend_1 | 2018-01-31T12:01:20.440737262Z {"@timestamp":"2018-01-31T12:01:20.438+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"rWENisKUvQckIjLzn4VUAfnm","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2877/9179097661_ce7eb4658e_o.jpg"}}},{"name":"IngestionRouting","id":"oNjZwMCwQxU_1t0xwylU51rd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"rWENisKUvQckIjLzn4VUAfnm","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2877/9179097661_ce7eb4658e_o.jpg"}}}},"contextId":"HBF_2VQogKRcM65cjdDJiK25"}}
+frontend_1 | 2018-01-31T12:01:20.447010364Z {"@timestamp":"2018-01-31T12:01:20.446+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"q1EEkbVd_07RorMgdAbMetdK","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"v-JMqFqgeWAse-qGj02cyC9S"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"q1EEkbVd_07RorMgdAbMetdK","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"v-JMqFqgeWAse-qGj02cyC9S"}}},"contextId":"vVRkfPqHcgG0LWYsZbiGiDfa"}}
+frontend_1 | 2018-01-31T12:01:20.447644672Z {"@timestamp":"2018-01-31T12:01:20.447+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"UzljtlnKXHrU6nhUz8WGGvKy","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"UzljtlnKXHrU6nhUz8WGGvKy","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"vVRkfPqHcgG0LWYsZbiGiDfa"}}
+frontend_1 | 2018-01-31T12:01:20.448017970Z {"@timestamp":"2018-01-31T12:01:20.447+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"UzljtlnKXHrU6nhUz8WGGvKy","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"UzljtlnKXHrU6nhUz8WGGvKy","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"vVRkfPqHcgG0LWYsZbiGiDfa"}}
+frontend_1 | 2018-01-31T12:01:20.448315151Z {"@timestamp":"2018-01-31T12:01:20.448+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"q1EEkbVd_07RorMgdAbMetdK","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"v-JMqFqgeWAse-qGj02cyC9S"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"q1EEkbVd_07RorMgdAbMetdK","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"v-JMqFqgeWAse-qGj02cyC9S"}}},"contextId":"vVRkfPqHcgG0LWYsZbiGiDfa"}}
+frontend_1 | 2018-01-31T12:01:20.451573695Z {"@timestamp":"2018-01-31T12:01:20.451+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"rWENisKUvQckIjLzn4VUAfnm","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2877/9179097661_ce7eb4658e_o.jpg"}}},{"name":"IngestionRouting","id":"oNjZwMCwQxU_1t0xwylU51rd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"rWENisKUvQckIjLzn4VUAfnm","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2877/9179097661_ce7eb4658e_o.jpg"}}}},"contextId":"HBF_2VQogKRcM65cjdDJiK25"}}
+frontend_1 | 2018-01-31T12:01:20.455292407Z {"@timestamp":"2018-01-31T12:01:20.454+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"sBqi5ISwUgJqDJ-zHofo-WLo","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"CA0A6A38AC86CEF349CA73D95561D2BAEADF08B984610DF58874B93D4C496937","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2877/9179097661_ce7eb4658e_o.jpg"}}},{"name":"IngestionRouting","id":"oNjZwMCwQxU_1t0xwylU51rd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"sBqi5ISwUgJqDJ-zHofo-WLo","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"CA0A6A38AC86CEF349CA73D95561D2BAEADF08B984610DF58874B93D4C496937","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2877/9179097661_ce7eb4658e_o.jpg"}}}},"contextId":"HBF_2VQogKRcM65cjdDJiK25"}}
+frontend_1 | 2018-01-31T12:01:20.455721213Z {"@timestamp":"2018-01-31T12:01:20.455+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"_BA0_-nHphF88qt5dH3nyL5X","details":{}},{"name":"IngestionRouting","id":"UzljtlnKXHrU6nhUz8WGGvKy","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"_BA0_-nHphF88qt5dH3nyL5X","details":{}}},"contextId":"vVRkfPqHcgG0LWYsZbiGiDfa"}}
+frontend_1 | 2018-01-31T12:01:20.455987553Z {"@timestamp":"2018-01-31T12:01:20.455+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"sBqi5ISwUgJqDJ-zHofo-WLo","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"CA0A6A38AC86CEF349CA73D95561D2BAEADF08B984610DF58874B93D4C496937","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2877/9179097661_ce7eb4658e_o.jpg"}}},{"name":"IngestionRouting","id":"oNjZwMCwQxU_1t0xwylU51rd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"sBqi5ISwUgJqDJ-zHofo-WLo","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"CA0A6A38AC86CEF349CA73D95561D2BAEADF08B984610DF58874B93D4C496937","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2877/9179097661_ce7eb4658e_o.jpg"}}}},"contextId":"HBF_2VQogKRcM65cjdDJiK25"}}
+frontend_1 | 2018-01-31T12:01:20.456342986Z {"@timestamp":"2018-01-31T12:01:20.455+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"_BA0_-nHphF88qt5dH3nyL5X","details":{}},{"name":"IngestionRouting","id":"UzljtlnKXHrU6nhUz8WGGvKy","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"_BA0_-nHphF88qt5dH3nyL5X","details":{}}},"contextId":"vVRkfPqHcgG0LWYsZbiGiDfa"}}
+frontend_1 | 2018-01-31T12:01:20.457458245Z {"@timestamp":"2018-01-31T12:01:20.457+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"_BA0_-nHphF88qt5dH3nyL5X","details":{}},{"name":"IngestionRouting","id":"UzljtlnKXHrU6nhUz8WGGvKy","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"vVRkfPqHcgG0LWYsZbiGiDfa"}}
+frontend_1 | 2018-01-31T12:01:20.539381009Z {"@timestamp":"2018-01-31T12:01:20.538+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"sBqi5ISwUgJqDJ-zHofo-WLo","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"CA0A6A38AC86CEF349CA73D95561D2BAEADF08B984610DF58874B93D4C496937","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/3/2877/9179097661_ce7eb4658e_o.jpg"}}},{"name":"IngestionRouting","id":"oNjZwMCwQxU_1t0xwylU51rd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(c4c8ad34-ce64-0d6b-6c0d-4eb62ae1a7a4)"},"contextId":"HBF_2VQogKRcM65cjdDJiK25"}}
+frontend_1 | 2018-01-31T12:01:20.579616802Z {"@timestamp":"2018-01-31T12:01:20.579+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"_BA0_-nHphF88qt5dH3nyL5X","details":{}},{"name":"IngestionRouting","id":"UzljtlnKXHrU6nhUz8WGGvKy","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"vVRkfPqHcgG0LWYsZbiGiDfa"}}
+frontend_1 | 2018-01-31T12:01:20.582829336Z {"@timestamp":"2018-01-31T12:01:20.581+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:21.442481359Z {"@timestamp":"2018-01-31T12:01:21.442+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"WcDlQVX15WIkYrJebqaItVDQ","details":{"endpoint":"GET /health","transactionId":"CafIjchTW4yXQMYNCmkb451Y"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"WcDlQVX15WIkYrJebqaItVDQ","details":{"endpoint":"GET /health","transactionId":"CafIjchTW4yXQMYNCmkb451Y"}}},"contextId":"XGK-Yx7hZw_LNUgtbMrq28ev"}}
+frontend_1 | 2018-01-31T12:01:21.442921663Z {"@timestamp":"2018-01-31T12:01:21.442+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"WcDlQVX15WIkYrJebqaItVDQ","details":{"endpoint":"GET /health","transactionId":"CafIjchTW4yXQMYNCmkb451Y"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"WcDlQVX15WIkYrJebqaItVDQ","details":{"endpoint":"GET /health","transactionId":"CafIjchTW4yXQMYNCmkb451Y"}}},"contextId":"XGK-Yx7hZw_LNUgtbMrq28ev"}}
+frontend_1 | 2018-01-31T12:01:21.443950755Z {"@timestamp":"2018-01-31T12:01:21.442+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"epRVmFEIDt-x_V8o9gUL78af","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"bBk7ZxYW-mqbJjVxuVzd2Ry2"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"epRVmFEIDt-x_V8o9gUL78af","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"bBk7ZxYW-mqbJjVxuVzd2Ry2"}}},"contextId":"rqBEHqVnx9tWoFvu2yfiFUdQ"}}
+frontend_1 | 2018-01-31T12:01:21.447514822Z {"@timestamp":"2018-01-31T12:01:21.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"ocApTkVNlMPe8v6z1uC7U094","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"ocApTkVNlMPe8v6z1uC7U094","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"rqBEHqVnx9tWoFvu2yfiFUdQ"}}
+frontend_1 | 2018-01-31T12:01:21.448699781Z {"@timestamp":"2018-01-31T12:01:21.447+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"ocApTkVNlMPe8v6z1uC7U094","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"ocApTkVNlMPe8v6z1uC7U094","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"rqBEHqVnx9tWoFvu2yfiFUdQ"}}
+frontend_1 | 2018-01-31T12:01:21.449432306Z {"@timestamp":"2018-01-31T12:01:21.448+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"epRVmFEIDt-x_V8o9gUL78af","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"bBk7ZxYW-mqbJjVxuVzd2Ry2"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"epRVmFEIDt-x_V8o9gUL78af","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"bBk7ZxYW-mqbJjVxuVzd2Ry2"}}},"contextId":"rqBEHqVnx9tWoFvu2yfiFUdQ"}}
+frontend_1 | 2018-01-31T12:01:21.450978380Z {"@timestamp":"2018-01-31T12:01:21.450+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"gXXlc1v1m6liRZSNzHMS1Div","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/2/1133/543611473_73cac60692_o.jpg"}}},{"name":"IngestionRouting","id":"ocApTkVNlMPe8v6z1uC7U094","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"gXXlc1v1m6liRZSNzHMS1Div","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/2/1133/543611473_73cac60692_o.jpg"}}}},"contextId":"rqBEHqVnx9tWoFvu2yfiFUdQ"}}
+frontend_1 | 2018-01-31T12:01:21.451357889Z {"@timestamp":"2018-01-31T12:01:21.450+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"Dmh3m-pvyD5pO1p3JQdLXbeW","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"wAA-VoFXme2o5cTSi6ycJZ5D"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"Dmh3m-pvyD5pO1p3JQdLXbeW","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"wAA-VoFXme2o5cTSi6ycJZ5D"}}},"contextId":"q6-afx2R3B9Y4EdnJOrKoesp"}}
+frontend_1 | 2018-01-31T12:01:21.452056315Z {"@timestamp":"2018-01-31T12:01:21.451+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"OL3NnYFUUme5PyiqjSytNNAw","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"OL3NnYFUUme5PyiqjSytNNAw","details":{"partnerId":"test-partner-id"}}},"contextId":"q6-afx2R3B9Y4EdnJOrKoesp"}}
+frontend_1 | 2018-01-31T12:01:21.452703647Z {"@timestamp":"2018-01-31T12:01:21.452+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"gXXlc1v1m6liRZSNzHMS1Div","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/2/1133/543611473_73cac60692_o.jpg"}}},{"name":"IngestionRouting","id":"ocApTkVNlMPe8v6z1uC7U094","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"gXXlc1v1m6liRZSNzHMS1Div","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/2/1133/543611473_73cac60692_o.jpg"}}}},"contextId":"rqBEHqVnx9tWoFvu2yfiFUdQ"}}
+frontend_1 | 2018-01-31T12:01:21.452731160Z {"@timestamp":"2018-01-31T12:01:21.452+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"OL3NnYFUUme5PyiqjSytNNAw","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"OL3NnYFUUme5PyiqjSytNNAw","details":{"partnerId":"test-partner-id"}}},"contextId":"q6-afx2R3B9Y4EdnJOrKoesp"}}
+frontend_1 | 2018-01-31T12:01:21.453310814Z {"@timestamp":"2018-01-31T12:01:21.453+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"Dmh3m-pvyD5pO1p3JQdLXbeW","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"wAA-VoFXme2o5cTSi6ycJZ5D"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"Dmh3m-pvyD5pO1p3JQdLXbeW","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"wAA-VoFXme2o5cTSi6ycJZ5D"}}},"contextId":"q6-afx2R3B9Y4EdnJOrKoesp"}}
+frontend_1 | 2018-01-31T12:01:21.453531550Z {"@timestamp":"2018-01-31T12:01:21.453+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"YPClZmA0LDGB0sGfcxcYQ0MP","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"3D50A400C7C16BBDFCFAD671D6B0C5D33B3E961B8933306B64E274866158F192","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/2/1133/543611473_73cac60692_o.jpg"}}},{"name":"IngestionRouting","id":"ocApTkVNlMPe8v6z1uC7U094","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"YPClZmA0LDGB0sGfcxcYQ0MP","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"3D50A400C7C16BBDFCFAD671D6B0C5D33B3E961B8933306B64E274866158F192","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/2/1133/543611473_73cac60692_o.jpg"}}}},"contextId":"rqBEHqVnx9tWoFvu2yfiFUdQ"}}
+frontend_1 | 2018-01-31T12:01:21.456031527Z {"@timestamp":"2018-01-31T12:01:21.455+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"YPClZmA0LDGB0sGfcxcYQ0MP","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"3D50A400C7C16BBDFCFAD671D6B0C5D33B3E961B8933306B64E274866158F192","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/2/1133/543611473_73cac60692_o.jpg"}}},{"name":"IngestionRouting","id":"ocApTkVNlMPe8v6z1uC7U094","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"YPClZmA0LDGB0sGfcxcYQ0MP","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"3D50A400C7C16BBDFCFAD671D6B0C5D33B3E961B8933306B64E274866158F192","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/2/1133/543611473_73cac60692_o.jpg"}}}},"contextId":"rqBEHqVnx9tWoFvu2yfiFUdQ"}}
+frontend_1 | 2018-01-31T12:01:21.464657546Z {"@timestamp":"2018-01-31T12:01:21.464+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"xgw8S9KkEGaRyJMe5uHURVlc","details":{}},{"name":"IngestionRouting","id":"OL3NnYFUUme5PyiqjSytNNAw","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"xgw8S9KkEGaRyJMe5uHURVlc","details":{}}},"contextId":"q6-afx2R3B9Y4EdnJOrKoesp"}}
+frontend_1 | 2018-01-31T12:01:21.466462159Z {"@timestamp":"2018-01-31T12:01:21.464+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"xgw8S9KkEGaRyJMe5uHURVlc","details":{}},{"name":"IngestionRouting","id":"OL3NnYFUUme5PyiqjSytNNAw","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"xgw8S9KkEGaRyJMe5uHURVlc","details":{}}},"contextId":"q6-afx2R3B9Y4EdnJOrKoesp"}}
+frontend_1 | 2018-01-31T12:01:21.467146873Z {"@timestamp":"2018-01-31T12:01:21.466+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"xgw8S9KkEGaRyJMe5uHURVlc","details":{}},{"name":"IngestionRouting","id":"OL3NnYFUUme5PyiqjSytNNAw","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"q6-afx2R3B9Y4EdnJOrKoesp"}}
+frontend_1 | 2018-01-31T12:01:21.529976252Z {"@timestamp":"2018-01-31T12:01:21.529+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"YPClZmA0LDGB0sGfcxcYQ0MP","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"3D50A400C7C16BBDFCFAD671D6B0C5D33B3E961B8933306B64E274866158F192","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/2/1133/543611473_73cac60692_o.jpg"}}},{"name":"IngestionRouting","id":"ocApTkVNlMPe8v6z1uC7U094","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(adb15270-e3a5-a35c-4487-713a55fddd33)"},"contextId":"rqBEHqVnx9tWoFvu2yfiFUdQ"}}
+frontend_1 | 2018-01-31T12:01:21.599083885Z {"@timestamp":"2018-01-31T12:01:21.598+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"xgw8S9KkEGaRyJMe5uHURVlc","details":{}},{"name":"IngestionRouting","id":"OL3NnYFUUme5PyiqjSytNNAw","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"q6-afx2R3B9Y4EdnJOrKoesp"}}
+frontend_1 | 2018-01-31T12:01:21.602497315Z {"@timestamp":"2018-01-31T12:01:21.600+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:23.441577689Z {"@timestamp":"2018-01-31T12:01:23.434+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"RZ0hr5uyH-qHq7vJR_UO30FC","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"iDdJLQ6ttzrSpp2NxjTW9s-R"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"RZ0hr5uyH-qHq7vJR_UO30FC","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"iDdJLQ6ttzrSpp2NxjTW9s-R"}}},"contextId":"bzStPY-RH_Aua1TL_VJLS8st"}}
+frontend_1 | 2018-01-31T12:01:23.450412034Z {"@timestamp":"2018-01-31T12:01:23.449+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"v3Nugv0LU-_0cBpI2ffurcTj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"v3Nugv0LU-_0cBpI2ffurcTj","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"bzStPY-RH_Aua1TL_VJLS8st"}}
+frontend_1 | 2018-01-31T12:01:23.451270853Z {"@timestamp":"2018-01-31T12:01:23.450+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"v3Nugv0LU-_0cBpI2ffurcTj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"v3Nugv0LU-_0cBpI2ffurcTj","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"bzStPY-RH_Aua1TL_VJLS8st"}}
+frontend_1 | 2018-01-31T12:01:23.451738405Z {"@timestamp":"2018-01-31T12:01:23.451+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"RZ0hr5uyH-qHq7vJR_UO30FC","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"iDdJLQ6ttzrSpp2NxjTW9s-R"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"RZ0hr5uyH-qHq7vJR_UO30FC","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"iDdJLQ6ttzrSpp2NxjTW9s-R"}}},"contextId":"bzStPY-RH_Aua1TL_VJLS8st"}}
+frontend_1 | 2018-01-31T12:01:23.454248342Z {"@timestamp":"2018-01-31T12:01:23.453+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"3Pbd2wsNUQ9omj5NEYHxTeGN","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"URixI1BGx1zs-bgqLVyXGa0G"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"3Pbd2wsNUQ9omj5NEYHxTeGN","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"URixI1BGx1zs-bgqLVyXGa0G"}}},"contextId":"WIavV3MMl-G2BtDSzYenEthk"}}
+frontend_1 | 2018-01-31T12:01:23.454355114Z {"@timestamp":"2018-01-31T12:01:23.453+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"-guve2VWeV_lTW63anyMiDYV","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3774/9179081889_5202a65d85_o.jpg"}}},{"name":"IngestionRouting","id":"v3Nugv0LU-_0cBpI2ffurcTj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"-guve2VWeV_lTW63anyMiDYV","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3774/9179081889_5202a65d85_o.jpg"}}}},"contextId":"bzStPY-RH_Aua1TL_VJLS8st"}}
+frontend_1 | 2018-01-31T12:01:23.456044258Z {"@timestamp":"2018-01-31T12:01:23.455+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"-guve2VWeV_lTW63anyMiDYV","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3774/9179081889_5202a65d85_o.jpg"}}},{"name":"IngestionRouting","id":"v3Nugv0LU-_0cBpI2ffurcTj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"-guve2VWeV_lTW63anyMiDYV","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3774/9179081889_5202a65d85_o.jpg"}}}},"contextId":"bzStPY-RH_Aua1TL_VJLS8st"}}
+frontend_1 | 2018-01-31T12:01:23.456626157Z {"@timestamp":"2018-01-31T12:01:23.456+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"eAA6bJZ-VrTMDn9YsMMI6NcV","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"DCC25B9382C09B41494BE200FDF9BE346120A9B370FF926C47E12408928A895D","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3774/9179081889_5202a65d85_o.jpg"}}},{"name":"IngestionRouting","id":"v3Nugv0LU-_0cBpI2ffurcTj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"eAA6bJZ-VrTMDn9YsMMI6NcV","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"DCC25B9382C09B41494BE200FDF9BE346120A9B370FF926C47E12408928A895D","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3774/9179081889_5202a65d85_o.jpg"}}}},"contextId":"bzStPY-RH_Aua1TL_VJLS8st"}}
+frontend_1 | 2018-01-31T12:01:23.457097606Z {"@timestamp":"2018-01-31T12:01:23.456+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"ZRH2JhDttmeTal9fi-adcR60","details":{"endpoint":"GET /health","transactionId":"ouqAdx0mL969CrM36nfVsljB"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"ZRH2JhDttmeTal9fi-adcR60","details":{"endpoint":"GET /health","transactionId":"ouqAdx0mL969CrM36nfVsljB"}}},"contextId":"PCWC4ZhLarAbxbrwBpI4MCoT"}}
+frontend_1 | 2018-01-31T12:01:23.458242226Z {"@timestamp":"2018-01-31T12:01:23.457+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"ZRH2JhDttmeTal9fi-adcR60","details":{"endpoint":"GET /health","transactionId":"ouqAdx0mL969CrM36nfVsljB"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"ZRH2JhDttmeTal9fi-adcR60","details":{"endpoint":"GET /health","transactionId":"ouqAdx0mL969CrM36nfVsljB"}}},"contextId":"PCWC4ZhLarAbxbrwBpI4MCoT"}}
+frontend_1 | 2018-01-31T12:01:23.459501703Z {"@timestamp":"2018-01-31T12:01:23.456+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"eAA6bJZ-VrTMDn9YsMMI6NcV","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"DCC25B9382C09B41494BE200FDF9BE346120A9B370FF926C47E12408928A895D","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3774/9179081889_5202a65d85_o.jpg"}}},{"name":"IngestionRouting","id":"v3Nugv0LU-_0cBpI2ffurcTj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"eAA6bJZ-VrTMDn9YsMMI6NcV","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"DCC25B9382C09B41494BE200FDF9BE346120A9B370FF926C47E12408928A895D","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3774/9179081889_5202a65d85_o.jpg"}}}},"contextId":"bzStPY-RH_Aua1TL_VJLS8st"}}
+frontend_1 | 2018-01-31T12:01:23.479226974Z {"@timestamp":"2018-01-31T12:01:23.478+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"2eNhyxzZgt7AQidq_q5_1WfY","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"2eNhyxzZgt7AQidq_q5_1WfY","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"WIavV3MMl-G2BtDSzYenEthk"}}
+frontend_1 | 2018-01-31T12:01:23.487981791Z {"@timestamp":"2018-01-31T12:01:23.487+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"2eNhyxzZgt7AQidq_q5_1WfY","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"2eNhyxzZgt7AQidq_q5_1WfY","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"WIavV3MMl-G2BtDSzYenEthk"}}
+frontend_1 | 2018-01-31T12:01:23.490991630Z {"@timestamp":"2018-01-31T12:01:23.488+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"3Pbd2wsNUQ9omj5NEYHxTeGN","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"URixI1BGx1zs-bgqLVyXGa0G"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"3Pbd2wsNUQ9omj5NEYHxTeGN","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"URixI1BGx1zs-bgqLVyXGa0G"}}},"contextId":"WIavV3MMl-G2BtDSzYenEthk"}}
+frontend_1 | 2018-01-31T12:01:23.515397307Z {"@timestamp":"2018-01-31T12:01:23.515+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"RH6xSpuZ1PBHE3kfO7uCzmNh","details":{}},{"name":"IngestionRouting","id":"2eNhyxzZgt7AQidq_q5_1WfY","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"RH6xSpuZ1PBHE3kfO7uCzmNh","details":{}}},"contextId":"WIavV3MMl-G2BtDSzYenEthk"}}
+frontend_1 | 2018-01-31T12:01:23.515924030Z {"@timestamp":"2018-01-31T12:01:23.515+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"RH6xSpuZ1PBHE3kfO7uCzmNh","details":{}},{"name":"IngestionRouting","id":"2eNhyxzZgt7AQidq_q5_1WfY","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"RH6xSpuZ1PBHE3kfO7uCzmNh","details":{}}},"contextId":"WIavV3MMl-G2BtDSzYenEthk"}}
+frontend_1 | 2018-01-31T12:01:23.516997380Z {"@timestamp":"2018-01-31T12:01:23.516+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"RH6xSpuZ1PBHE3kfO7uCzmNh","details":{}},{"name":"IngestionRouting","id":"2eNhyxzZgt7AQidq_q5_1WfY","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"WIavV3MMl-G2BtDSzYenEthk"}}
+frontend_1 | 2018-01-31T12:01:23.541673210Z {"@timestamp":"2018-01-31T12:01:23.541+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"eAA6bJZ-VrTMDn9YsMMI6NcV","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"DCC25B9382C09B41494BE200FDF9BE346120A9B370FF926C47E12408928A895D","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/3774/9179081889_5202a65d85_o.jpg"}}},{"name":"IngestionRouting","id":"v3Nugv0LU-_0cBpI2ffurcTj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(adbb1aee-0227-45f1-9447-ce1b2c9ca1f4)"},"contextId":"bzStPY-RH_Aua1TL_VJLS8st"}}
+frontend_1 | 2018-01-31T12:01:23.739131930Z {"@timestamp":"2018-01-31T12:01:23.738+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"RH6xSpuZ1PBHE3kfO7uCzmNh","details":{}},{"name":"IngestionRouting","id":"2eNhyxzZgt7AQidq_q5_1WfY","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"WIavV3MMl-G2BtDSzYenEthk"}}
+frontend_1 | 2018-01-31T12:01:23.740857609Z {"@timestamp":"2018-01-31T12:01:23.740+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:24.440945743Z {"@timestamp":"2018-01-31T12:01:24.439+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"5B_yLK18KeqjgNZCjb93iKgX","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"Kx1Lt77Jkgm1DB1ivgEPJt21"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"5B_yLK18KeqjgNZCjb93iKgX","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"Kx1Lt77Jkgm1DB1ivgEPJt21"}}},"contextId":"87aR3fyE6pqgCqFcF6eCCJtj"}}
+frontend_1 | 2018-01-31T12:01:24.445650714Z {"@timestamp":"2018-01-31T12:01:24.441+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"0dN23dP7JBjoxGfkpm91cHcC","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"0dN23dP7JBjoxGfkpm91cHcC","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"87aR3fyE6pqgCqFcF6eCCJtj"}}
+frontend_1 | 2018-01-31T12:01:24.446539363Z {"@timestamp":"2018-01-31T12:01:24.446+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"0dN23dP7JBjoxGfkpm91cHcC","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"0dN23dP7JBjoxGfkpm91cHcC","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"87aR3fyE6pqgCqFcF6eCCJtj"}}
+frontend_1 | 2018-01-31T12:01:24.447412636Z {"@timestamp":"2018-01-31T12:01:24.446+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"5B_yLK18KeqjgNZCjb93iKgX","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"Kx1Lt77Jkgm1DB1ivgEPJt21"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"5B_yLK18KeqjgNZCjb93iKgX","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"Kx1Lt77Jkgm1DB1ivgEPJt21"}}},"contextId":"87aR3fyE6pqgCqFcF6eCCJtj"}}
+frontend_1 | 2018-01-31T12:01:24.451125093Z {"@timestamp":"2018-01-31T12:01:24.450+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"fsRSjXhJbQlvVc67KiRqhfcp","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/5251/5407412921_9ba9dbc7e9_o.jpg"}}},{"name":"IngestionRouting","id":"0dN23dP7JBjoxGfkpm91cHcC","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"fsRSjXhJbQlvVc67KiRqhfcp","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/5251/5407412921_9ba9dbc7e9_o.jpg"}}}},"contextId":"87aR3fyE6pqgCqFcF6eCCJtj"}}
+frontend_1 | 2018-01-31T12:01:24.452406219Z {"@timestamp":"2018-01-31T12:01:24.451+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"fsRSjXhJbQlvVc67KiRqhfcp","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/5251/5407412921_9ba9dbc7e9_o.jpg"}}},{"name":"IngestionRouting","id":"0dN23dP7JBjoxGfkpm91cHcC","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"fsRSjXhJbQlvVc67KiRqhfcp","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/5251/5407412921_9ba9dbc7e9_o.jpg"}}}},"contextId":"87aR3fyE6pqgCqFcF6eCCJtj"}}
+frontend_1 | 2018-01-31T12:01:24.454499767Z {"@timestamp":"2018-01-31T12:01:24.454+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"NgVe1Jjhtccqiuw-LmF-MQBk","details":{"endpoint":"GET /health","transactionId":"Nly0tF8uSte3IrVkyqb9hajM"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"NgVe1Jjhtccqiuw-LmF-MQBk","details":{"endpoint":"GET /health","transactionId":"Nly0tF8uSte3IrVkyqb9hajM"}}},"contextId":"rvhS2-8NroXjEzdV-SrfiOSU"}}
+frontend_1 | 2018-01-31T12:01:24.454918320Z {"@timestamp":"2018-01-31T12:01:24.454+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"NgVe1Jjhtccqiuw-LmF-MQBk","details":{"endpoint":"GET /health","transactionId":"Nly0tF8uSte3IrVkyqb9hajM"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"NgVe1Jjhtccqiuw-LmF-MQBk","details":{"endpoint":"GET /health","transactionId":"Nly0tF8uSte3IrVkyqb9hajM"}}},"contextId":"rvhS2-8NroXjEzdV-SrfiOSU"}}
+frontend_1 | 2018-01-31T12:01:24.455061996Z {"@timestamp":"2018-01-31T12:01:24.454+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"ivN2j8c8XAXCI87PC-Eki_1o","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"2q7R_G3vSTpuzKrkbX3vWeol"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"ivN2j8c8XAXCI87PC-Eki_1o","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"2q7R_G3vSTpuzKrkbX3vWeol"}}},"contextId":"fXiOdBIXl1SODdBBAXq87c1l"}}
+frontend_1 | 2018-01-31T12:01:24.455563826Z {"@timestamp":"2018-01-31T12:01:24.455+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"8MK7EXdi1Fc3kSGnF1WV6Snd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"8MK7EXdi1Fc3kSGnF1WV6Snd","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"fXiOdBIXl1SODdBBAXq87c1l"}}
+frontend_1 | 2018-01-31T12:01:24.455851866Z {"@timestamp":"2018-01-31T12:01:24.455+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"8MK7EXdi1Fc3kSGnF1WV6Snd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"8MK7EXdi1Fc3kSGnF1WV6Snd","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"fXiOdBIXl1SODdBBAXq87c1l"}}
+frontend_1 | 2018-01-31T12:01:24.456200181Z {"@timestamp":"2018-01-31T12:01:24.455+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"ivN2j8c8XAXCI87PC-Eki_1o","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"2q7R_G3vSTpuzKrkbX3vWeol"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"ivN2j8c8XAXCI87PC-Eki_1o","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"2q7R_G3vSTpuzKrkbX3vWeol"}}},"contextId":"fXiOdBIXl1SODdBBAXq87c1l"}}
+frontend_1 | 2018-01-31T12:01:24.456991381Z {"@timestamp":"2018-01-31T12:01:24.456+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"Pdx4RFqx-0Gsjny0zofMTr0x","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"A32633D6104A601A3C92600A1C4EBE1A86E3CFE7E055119D57BC871EC9171D12","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/5251/5407412921_9ba9dbc7e9_o.jpg"}}},{"name":"IngestionRouting","id":"0dN23dP7JBjoxGfkpm91cHcC","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"Pdx4RFqx-0Gsjny0zofMTr0x","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"A32633D6104A601A3C92600A1C4EBE1A86E3CFE7E055119D57BC871EC9171D12","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/5251/5407412921_9ba9dbc7e9_o.jpg"}}}},"contextId":"87aR3fyE6pqgCqFcF6eCCJtj"}}
+frontend_1 | 2018-01-31T12:01:24.458025617Z {"@timestamp":"2018-01-31T12:01:24.457+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"Pdx4RFqx-0Gsjny0zofMTr0x","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"A32633D6104A601A3C92600A1C4EBE1A86E3CFE7E055119D57BC871EC9171D12","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/5251/5407412921_9ba9dbc7e9_o.jpg"}}},{"name":"IngestionRouting","id":"0dN23dP7JBjoxGfkpm91cHcC","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"Pdx4RFqx-0Gsjny0zofMTr0x","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"A32633D6104A601A3C92600A1C4EBE1A86E3CFE7E055119D57BC871EC9171D12","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/5251/5407412921_9ba9dbc7e9_o.jpg"}}}},"contextId":"87aR3fyE6pqgCqFcF6eCCJtj"}}
+frontend_1 | 2018-01-31T12:01:24.469837962Z {"@timestamp":"2018-01-31T12:01:24.469+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"imTfBn0neIESzsbbmmt-6DRv","details":{}},{"name":"IngestionRouting","id":"8MK7EXdi1Fc3kSGnF1WV6Snd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"imTfBn0neIESzsbbmmt-6DRv","details":{}}},"contextId":"fXiOdBIXl1SODdBBAXq87c1l"}}
+frontend_1 | 2018-01-31T12:01:24.470397085Z {"@timestamp":"2018-01-31T12:01:24.470+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"imTfBn0neIESzsbbmmt-6DRv","details":{}},{"name":"IngestionRouting","id":"8MK7EXdi1Fc3kSGnF1WV6Snd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"imTfBn0neIESzsbbmmt-6DRv","details":{}}},"contextId":"fXiOdBIXl1SODdBBAXq87c1l"}}
+frontend_1 | 2018-01-31T12:01:24.479176033Z {"@timestamp":"2018-01-31T12:01:24.478+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"imTfBn0neIESzsbbmmt-6DRv","details":{}},{"name":"IngestionRouting","id":"8MK7EXdi1Fc3kSGnF1WV6Snd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"fXiOdBIXl1SODdBBAXq87c1l"}}
+frontend_1 | 2018-01-31T12:01:24.539109560Z {"@timestamp":"2018-01-31T12:01:24.538+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"Pdx4RFqx-0Gsjny0zofMTr0x","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"A32633D6104A601A3C92600A1C4EBE1A86E3CFE7E055119D57BC871EC9171D12","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/5251/5407412921_9ba9dbc7e9_o.jpg"}}},{"name":"IngestionRouting","id":"0dN23dP7JBjoxGfkpm91cHcC","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(9bdae5b6-a3ea-0c86-d614-fe5372273fe9)"},"contextId":"87aR3fyE6pqgCqFcF6eCCJtj"}}
+frontend_1 | 2018-01-31T12:01:24.689027038Z {"@timestamp":"2018-01-31T12:01:24.688+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"imTfBn0neIESzsbbmmt-6DRv","details":{}},{"name":"IngestionRouting","id":"8MK7EXdi1Fc3kSGnF1WV6Snd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"fXiOdBIXl1SODdBBAXq87c1l"}}
+frontend_1 | 2018-01-31T12:01:24.691730770Z {"@timestamp":"2018-01-31T12:01:24.691+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:25.439964795Z {"@timestamp":"2018-01-31T12:01:25.439+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"Zs5ODmiiulpQP-QjB4LGfAyI","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"X5GkG-lt-dsMcGPdsuNQIeE2"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"Zs5ODmiiulpQP-QjB4LGfAyI","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"X5GkG-lt-dsMcGPdsuNQIeE2"}}},"contextId":"Eg33OlX4G0bxx0sa8Mip3ans"}}
+frontend_1 | 2018-01-31T12:01:25.440814739Z {"@timestamp":"2018-01-31T12:01:25.440+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"Ze9xgFeRvy-knUjq18TR6m8v","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"Ze9xgFeRvy-knUjq18TR6m8v","details":{"partnerId":"test-partner-id"}}},"contextId":"Eg33OlX4G0bxx0sa8Mip3ans"}}
+frontend_1 | 2018-01-31T12:01:25.441390662Z {"@timestamp":"2018-01-31T12:01:25.440+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"Ze9xgFeRvy-knUjq18TR6m8v","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"Ze9xgFeRvy-knUjq18TR6m8v","details":{"partnerId":"test-partner-id"}}},"contextId":"Eg33OlX4G0bxx0sa8Mip3ans"}}
+frontend_1 | 2018-01-31T12:01:25.442244554Z {"@timestamp":"2018-01-31T12:01:25.441+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"Zs5ODmiiulpQP-QjB4LGfAyI","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"X5GkG-lt-dsMcGPdsuNQIeE2"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"Zs5ODmiiulpQP-QjB4LGfAyI","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"X5GkG-lt-dsMcGPdsuNQIeE2"}}},"contextId":"Eg33OlX4G0bxx0sa8Mip3ans"}}
+frontend_1 | 2018-01-31T12:01:25.444771779Z {"@timestamp":"2018-01-31T12:01:25.444+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"4Ny8rEX_jhquCSdWTtXKcKXH","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7625/16330777344_ccb523371b_o.jpg"}}},{"name":"IngestionRouting","id":"Ze9xgFeRvy-knUjq18TR6m8v","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"4Ny8rEX_jhquCSdWTtXKcKXH","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7625/16330777344_ccb523371b_o.jpg"}}}},"contextId":"Eg33OlX4G0bxx0sa8Mip3ans"}}
+frontend_1 | 2018-01-31T12:01:25.446393842Z {"@timestamp":"2018-01-31T12:01:25.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"4Ny8rEX_jhquCSdWTtXKcKXH","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7625/16330777344_ccb523371b_o.jpg"}}},{"name":"IngestionRouting","id":"Ze9xgFeRvy-knUjq18TR6m8v","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"4Ny8rEX_jhquCSdWTtXKcKXH","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7625/16330777344_ccb523371b_o.jpg"}}}},"contextId":"Eg33OlX4G0bxx0sa8Mip3ans"}}
+frontend_1 | 2018-01-31T12:01:25.447463253Z {"@timestamp":"2018-01-31T12:01:25.446+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"QEFR3U9KiFe1-pUxxFjTLukc","details":{"message":{"partnerId":"test-partner-id","masterId":"103370CCCF5C90AE485D9A078B465C13A8266736A579473C1D0F07368C6B4AFD","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7625/16330777344_ccb523371b_o.jpg"}}},{"name":"IngestionRouting","id":"Ze9xgFeRvy-knUjq18TR6m8v","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"QEFR3U9KiFe1-pUxxFjTLukc","details":{"message":{"partnerId":"test-partner-id","masterId":"103370CCCF5C90AE485D9A078B465C13A8266736A579473C1D0F07368C6B4AFD","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7625/16330777344_ccb523371b_o.jpg"}}}},"contextId":"Eg33OlX4G0bxx0sa8Mip3ans"}}
+frontend_1 | 2018-01-31T12:01:25.448807007Z {"@timestamp":"2018-01-31T12:01:25.447+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"QEFR3U9KiFe1-pUxxFjTLukc","details":{"message":{"partnerId":"test-partner-id","masterId":"103370CCCF5C90AE485D9A078B465C13A8266736A579473C1D0F07368C6B4AFD","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7625/16330777344_ccb523371b_o.jpg"}}},{"name":"IngestionRouting","id":"Ze9xgFeRvy-knUjq18TR6m8v","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"QEFR3U9KiFe1-pUxxFjTLukc","details":{"message":{"partnerId":"test-partner-id","masterId":"103370CCCF5C90AE485D9A078B465C13A8266736A579473C1D0F07368C6B4AFD","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7625/16330777344_ccb523371b_o.jpg"}}}},"contextId":"Eg33OlX4G0bxx0sa8Mip3ans"}}
+frontend_1 | 2018-01-31T12:01:25.450752669Z {"@timestamp":"2018-01-31T12:01:25.450+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"VN1AzQ5QHLbjt3cZOckqxlPf","details":{"endpoint":"GET /health","transactionId":"mx-kjndgD8JEjvdO99_osZGp"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"VN1AzQ5QHLbjt3cZOckqxlPf","details":{"endpoint":"GET /health","transactionId":"mx-kjndgD8JEjvdO99_osZGp"}}},"contextId":"hDfWMkceyBZqPTSKLtRHP81d"}}
+frontend_1 | 2018-01-31T12:01:25.453701196Z {"@timestamp":"2018-01-31T12:01:25.452+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"VN1AzQ5QHLbjt3cZOckqxlPf","details":{"endpoint":"GET /health","transactionId":"mx-kjndgD8JEjvdO99_osZGp"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"VN1AzQ5QHLbjt3cZOckqxlPf","details":{"endpoint":"GET /health","transactionId":"mx-kjndgD8JEjvdO99_osZGp"}}},"contextId":"hDfWMkceyBZqPTSKLtRHP81d"}}
+frontend_1 | 2018-01-31T12:01:25.473574517Z {"@timestamp":"2018-01-31T12:01:25.473+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"tgj9pkpDClJnbenwiYTVG3Fj","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"fcgij0ZIT8v0z60lc6dsFhgV"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"tgj9pkpDClJnbenwiYTVG3Fj","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"fcgij0ZIT8v0z60lc6dsFhgV"}}},"contextId":"ONYHlG3vQuu4hQgEWvTQLet6"}}
+frontend_1 | 2018-01-31T12:01:25.477187583Z {"@timestamp":"2018-01-31T12:01:25.474+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"qW33GTcZ9ga1mbZFtECRio5n","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"qW33GTcZ9ga1mbZFtECRio5n","details":{"partnerId":"test-partner-id"}}},"contextId":"ONYHlG3vQuu4hQgEWvTQLet6"}}
+frontend_1 | 2018-01-31T12:01:25.477801271Z {"@timestamp":"2018-01-31T12:01:25.477+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"qW33GTcZ9ga1mbZFtECRio5n","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"qW33GTcZ9ga1mbZFtECRio5n","details":{"partnerId":"test-partner-id"}}},"contextId":"ONYHlG3vQuu4hQgEWvTQLet6"}}
+frontend_1 | 2018-01-31T12:01:25.478299203Z {"@timestamp":"2018-01-31T12:01:25.477+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"tgj9pkpDClJnbenwiYTVG3Fj","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"fcgij0ZIT8v0z60lc6dsFhgV"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"tgj9pkpDClJnbenwiYTVG3Fj","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"fcgij0ZIT8v0z60lc6dsFhgV"}}},"contextId":"ONYHlG3vQuu4hQgEWvTQLet6"}}
+frontend_1 | 2018-01-31T12:01:25.498542851Z {"@timestamp":"2018-01-31T12:01:25.498+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"8MNHcuRmU7GzMoztMoKM5y-m","details":{}},{"name":"IngestionRouting","id":"qW33GTcZ9ga1mbZFtECRio5n","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"8MNHcuRmU7GzMoztMoKM5y-m","details":{}}},"contextId":"ONYHlG3vQuu4hQgEWvTQLet6"}}
+frontend_1 | 2018-01-31T12:01:25.498897657Z {"@timestamp":"2018-01-31T12:01:25.498+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"8MNHcuRmU7GzMoztMoKM5y-m","details":{}},{"name":"IngestionRouting","id":"qW33GTcZ9ga1mbZFtECRio5n","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"8MNHcuRmU7GzMoztMoKM5y-m","details":{}}},"contextId":"ONYHlG3vQuu4hQgEWvTQLet6"}}
+frontend_1 | 2018-01-31T12:01:25.499609983Z {"@timestamp":"2018-01-31T12:01:25.499+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"8MNHcuRmU7GzMoztMoKM5y-m","details":{}},{"name":"IngestionRouting","id":"qW33GTcZ9ga1mbZFtECRio5n","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"ONYHlG3vQuu4hQgEWvTQLet6"}}
+frontend_1 | 2018-01-31T12:01:25.543250111Z {"@timestamp":"2018-01-31T12:01:25.542+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"QEFR3U9KiFe1-pUxxFjTLukc","details":{"message":{"partnerId":"test-partner-id","masterId":"103370CCCF5C90AE485D9A078B465C13A8266736A579473C1D0F07368C6B4AFD","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7625/16330777344_ccb523371b_o.jpg"}}},{"name":"IngestionRouting","id":"Ze9xgFeRvy-knUjq18TR6m8v","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(a08e97a4-adce-8123-79e9-3ca947c6e274)"},"contextId":"Eg33OlX4G0bxx0sa8Mip3ans"}}
+frontend_1 | 2018-01-31T12:01:25.699551872Z {"@timestamp":"2018-01-31T12:01:25.699+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"8MNHcuRmU7GzMoztMoKM5y-m","details":{}},{"name":"IngestionRouting","id":"qW33GTcZ9ga1mbZFtECRio5n","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"ONYHlG3vQuu4hQgEWvTQLet6"}}
+frontend_1 | 2018-01-31T12:01:25.701382837Z {"@timestamp":"2018-01-31T12:01:25.700+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:27.440303056Z {"@timestamp":"2018-01-31T12:01:27.439+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"sQUbJxim70FbwQsFFilldtJT","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"HpIQ-k8cO7ygjEVxVuYp7WrF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"sQUbJxim70FbwQsFFilldtJT","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"HpIQ-k8cO7ygjEVxVuYp7WrF"}}},"contextId":"LbcpgGwcqtlbrmUl-X8I8w6t"}}
+frontend_1 | 2018-01-31T12:01:27.442490919Z {"@timestamp":"2018-01-31T12:01:27.441+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"LYUypN1uG6819mdXuMZ5IL9q","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"LYUypN1uG6819mdXuMZ5IL9q","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"LbcpgGwcqtlbrmUl-X8I8w6t"}}
+frontend_1 | 2018-01-31T12:01:27.443885598Z {"@timestamp":"2018-01-31T12:01:27.443+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"lz-m-_sf494ryEGgkGbm7UxJ","details":{"endpoint":"GET /health","transactionId":"8UP2W-HGCZooVOkYWVl8pDJm"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"lz-m-_sf494ryEGgkGbm7UxJ","details":{"endpoint":"GET /health","transactionId":"8UP2W-HGCZooVOkYWVl8pDJm"}}},"contextId":"cQh6sRSMoHUaAK6KQhTu5cQD"}}
+frontend_1 | 2018-01-31T12:01:27.444562122Z {"@timestamp":"2018-01-31T12:01:27.444+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"lz-m-_sf494ryEGgkGbm7UxJ","details":{"endpoint":"GET /health","transactionId":"8UP2W-HGCZooVOkYWVl8pDJm"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"lz-m-_sf494ryEGgkGbm7UxJ","details":{"endpoint":"GET /health","transactionId":"8UP2W-HGCZooVOkYWVl8pDJm"}}},"contextId":"cQh6sRSMoHUaAK6KQhTu5cQD"}}
+frontend_1 | 2018-01-31T12:01:27.444866359Z {"@timestamp":"2018-01-31T12:01:27.442+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"LYUypN1uG6819mdXuMZ5IL9q","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"LYUypN1uG6819mdXuMZ5IL9q","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"LbcpgGwcqtlbrmUl-X8I8w6t"}}
+frontend_1 | 2018-01-31T12:01:27.445705723Z {"@timestamp":"2018-01-31T12:01:27.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"sQUbJxim70FbwQsFFilldtJT","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"HpIQ-k8cO7ygjEVxVuYp7WrF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"sQUbJxim70FbwQsFFilldtJT","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"HpIQ-k8cO7ygjEVxVuYp7WrF"}}},"contextId":"LbcpgGwcqtlbrmUl-X8I8w6t"}}
+frontend_1 | 2018-01-31T12:01:27.461427597Z {"@timestamp":"2018-01-31T12:01:27.461+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"9aCdOTPdj1isAMXueOr07jw4","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"2KdpHhXMpUECG1xd6XGJfJtE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"9aCdOTPdj1isAMXueOr07jw4","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"2KdpHhXMpUECG1xd6XGJfJtE"}}},"contextId":"kLSDUfFvxcosuh4HCaBUk3YV"}}
+frontend_1 | 2018-01-31T12:01:27.463576259Z {"@timestamp":"2018-01-31T12:01:27.461+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"4lDg01OjeeyfllKyaMxYIviG","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/1225/1206572588_a0f2a4252e_o.jpg"}}},{"name":"IngestionRouting","id":"LYUypN1uG6819mdXuMZ5IL9q","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"4lDg01OjeeyfllKyaMxYIviG","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/1225/1206572588_a0f2a4252e_o.jpg"}}}},"contextId":"LbcpgGwcqtlbrmUl-X8I8w6t"}}
+frontend_1 | 2018-01-31T12:01:27.466285437Z {"@timestamp":"2018-01-31T12:01:27.464+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"zlGmnH2F8zZelXzyyoCesK39","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"zlGmnH2F8zZelXzyyoCesK39","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"kLSDUfFvxcosuh4HCaBUk3YV"}}
+frontend_1 | 2018-01-31T12:01:27.469330109Z {"@timestamp":"2018-01-31T12:01:27.467+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"zlGmnH2F8zZelXzyyoCesK39","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"zlGmnH2F8zZelXzyyoCesK39","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"kLSDUfFvxcosuh4HCaBUk3YV"}}
+frontend_1 | 2018-01-31T12:01:27.469669987Z {"@timestamp":"2018-01-31T12:01:27.468+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"4lDg01OjeeyfllKyaMxYIviG","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/1225/1206572588_a0f2a4252e_o.jpg"}}},{"name":"IngestionRouting","id":"LYUypN1uG6819mdXuMZ5IL9q","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"4lDg01OjeeyfllKyaMxYIviG","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/1225/1206572588_a0f2a4252e_o.jpg"}}}},"contextId":"LbcpgGwcqtlbrmUl-X8I8w6t"}}
+frontend_1 | 2018-01-31T12:01:27.470634905Z {"@timestamp":"2018-01-31T12:01:27.469+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"9aCdOTPdj1isAMXueOr07jw4","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"2KdpHhXMpUECG1xd6XGJfJtE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"9aCdOTPdj1isAMXueOr07jw4","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"2KdpHhXMpUECG1xd6XGJfJtE"}}},"contextId":"kLSDUfFvxcosuh4HCaBUk3YV"}}
+frontend_1 | 2018-01-31T12:01:27.472322554Z {"@timestamp":"2018-01-31T12:01:27.470+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"PhRg-6SGDAKFEGbf0jtEtlqp","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"C6C67C00B0FA4D394414ECE82256D70A2D386F0A47172223A92A582E6F683AC4","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/1225/1206572588_a0f2a4252e_o.jpg"}}},{"name":"IngestionRouting","id":"LYUypN1uG6819mdXuMZ5IL9q","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"PhRg-6SGDAKFEGbf0jtEtlqp","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"C6C67C00B0FA4D394414ECE82256D70A2D386F0A47172223A92A582E6F683AC4","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/1225/1206572588_a0f2a4252e_o.jpg"}}}},"contextId":"LbcpgGwcqtlbrmUl-X8I8w6t"}}
+frontend_1 | 2018-01-31T12:01:27.478820421Z {"@timestamp":"2018-01-31T12:01:27.478+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"PhRg-6SGDAKFEGbf0jtEtlqp","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"C6C67C00B0FA4D394414ECE82256D70A2D386F0A47172223A92A582E6F683AC4","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/1225/1206572588_a0f2a4252e_o.jpg"}}},{"name":"IngestionRouting","id":"LYUypN1uG6819mdXuMZ5IL9q","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"PhRg-6SGDAKFEGbf0jtEtlqp","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"C6C67C00B0FA4D394414ECE82256D70A2D386F0A47172223A92A582E6F683AC4","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/1225/1206572588_a0f2a4252e_o.jpg"}}}},"contextId":"LbcpgGwcqtlbrmUl-X8I8w6t"}}
+frontend_1 | 2018-01-31T12:01:27.499128819Z {"@timestamp":"2018-01-31T12:01:27.498+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"g2aEra0tuuqmLewzf447zSa-","details":{}},{"name":"IngestionRouting","id":"zlGmnH2F8zZelXzyyoCesK39","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"g2aEra0tuuqmLewzf447zSa-","details":{}}},"contextId":"kLSDUfFvxcosuh4HCaBUk3YV"}}
+frontend_1 | 2018-01-31T12:01:27.499494265Z {"@timestamp":"2018-01-31T12:01:27.499+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"g2aEra0tuuqmLewzf447zSa-","details":{}},{"name":"IngestionRouting","id":"zlGmnH2F8zZelXzyyoCesK39","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"g2aEra0tuuqmLewzf447zSa-","details":{}}},"contextId":"kLSDUfFvxcosuh4HCaBUk3YV"}}
+frontend_1 | 2018-01-31T12:01:27.500961222Z {"@timestamp":"2018-01-31T12:01:27.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"g2aEra0tuuqmLewzf447zSa-","details":{}},{"name":"IngestionRouting","id":"zlGmnH2F8zZelXzyyoCesK39","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"kLSDUfFvxcosuh4HCaBUk3YV"}}
+frontend_1 | 2018-01-31T12:01:27.550390697Z {"@timestamp":"2018-01-31T12:01:27.549+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"PhRg-6SGDAKFEGbf0jtEtlqp","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"C6C67C00B0FA4D394414ECE82256D70A2D386F0A47172223A92A582E6F683AC4","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/1225/1206572588_a0f2a4252e_o.jpg"}}},{"name":"IngestionRouting","id":"LYUypN1uG6819mdXuMZ5IL9q","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(86eb5767-2cfd-2baa-07e4-fbd119df8c1c)"},"contextId":"LbcpgGwcqtlbrmUl-X8I8w6t"}}
+frontend_1 | 2018-01-31T12:01:27.749184756Z {"@timestamp":"2018-01-31T12:01:27.748+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"g2aEra0tuuqmLewzf447zSa-","details":{}},{"name":"IngestionRouting","id":"zlGmnH2F8zZelXzyyoCesK39","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"kLSDUfFvxcosuh4HCaBUk3YV"}}
+frontend_1 | 2018-01-31T12:01:27.752207253Z {"@timestamp":"2018-01-31T12:01:27.751+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:28.437388098Z {"@timestamp":"2018-01-31T12:01:28.436+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"4lbPfUC4_p5roNscqoumREIL","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"GXUFtFbnXmKrcD801AkCNfuD"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"4lbPfUC4_p5roNscqoumREIL","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"GXUFtFbnXmKrcD801AkCNfuD"}}},"contextId":"0LFjRBuAFW6sv7Dx8nOCBV53"}}
+frontend_1 | 2018-01-31T12:01:28.438126651Z {"@timestamp":"2018-01-31T12:01:28.437+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"UQ8ZXYphv-aYo4OqRKGpRZo9","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"UQ8ZXYphv-aYo4OqRKGpRZo9","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"0LFjRBuAFW6sv7Dx8nOCBV53"}}
+frontend_1 | 2018-01-31T12:01:28.438791543Z {"@timestamp":"2018-01-31T12:01:28.438+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"UQ8ZXYphv-aYo4OqRKGpRZo9","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"UQ8ZXYphv-aYo4OqRKGpRZo9","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"0LFjRBuAFW6sv7Dx8nOCBV53"}}
+frontend_1 | 2018-01-31T12:01:28.439473587Z {"@timestamp":"2018-01-31T12:01:28.438+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"4lbPfUC4_p5roNscqoumREIL","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"GXUFtFbnXmKrcD801AkCNfuD"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"4lbPfUC4_p5roNscqoumREIL","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"GXUFtFbnXmKrcD801AkCNfuD"}}},"contextId":"0LFjRBuAFW6sv7Dx8nOCBV53"}}
+frontend_1 | 2018-01-31T12:01:28.441850686Z {"@timestamp":"2018-01-31T12:01:28.441+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"pTtcS_89u6dmnrECRcGy4xNa","details":{"request":{"client":"test","metadata":{},"reference":"https://c4.staticflickr.com/5/4056/4713056517_6298c2a071_o.jpg"}}},{"name":"IngestionRouting","id":"UQ8ZXYphv-aYo4OqRKGpRZo9","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"pTtcS_89u6dmnrECRcGy4xNa","details":{"request":{"client":"test","metadata":{},"reference":"https://c4.staticflickr.com/5/4056/4713056517_6298c2a071_o.jpg"}}}},"contextId":"0LFjRBuAFW6sv7Dx8nOCBV53"}}
+frontend_1 | 2018-01-31T12:01:28.443952467Z {"@timestamp":"2018-01-31T12:01:28.443+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"pTtcS_89u6dmnrECRcGy4xNa","details":{"request":{"client":"test","metadata":{},"reference":"https://c4.staticflickr.com/5/4056/4713056517_6298c2a071_o.jpg"}}},{"name":"IngestionRouting","id":"UQ8ZXYphv-aYo4OqRKGpRZo9","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"pTtcS_89u6dmnrECRcGy4xNa","details":{"request":{"client":"test","metadata":{},"reference":"https://c4.staticflickr.com/5/4056/4713056517_6298c2a071_o.jpg"}}}},"contextId":"0LFjRBuAFW6sv7Dx8nOCBV53"}}
+frontend_1 | 2018-01-31T12:01:28.444847701Z {"@timestamp":"2018-01-31T12:01:28.444+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"FrF-h96kedKoYW1oYVLu9Q0b","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"52F89AC97A765D8AE0856C885F76FE2F09F1A3892819971ECE28071093BBAA0A","client":"test","metadata":{},"reference":"https://c4.staticflickr.com/5/4056/4713056517_6298c2a071_o.jpg"}}},{"name":"IngestionRouting","id":"UQ8ZXYphv-aYo4OqRKGpRZo9","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"FrF-h96kedKoYW1oYVLu9Q0b","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"52F89AC97A765D8AE0856C885F76FE2F09F1A3892819971ECE28071093BBAA0A","client":"test","metadata":{},"reference":"https://c4.staticflickr.com/5/4056/4713056517_6298c2a071_o.jpg"}}}},"contextId":"0LFjRBuAFW6sv7Dx8nOCBV53"}}
+frontend_1 | 2018-01-31T12:01:28.446792197Z {"@timestamp":"2018-01-31T12:01:28.445+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"FrF-h96kedKoYW1oYVLu9Q0b","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"52F89AC97A765D8AE0856C885F76FE2F09F1A3892819971ECE28071093BBAA0A","client":"test","metadata":{},"reference":"https://c4.staticflickr.com/5/4056/4713056517_6298c2a071_o.jpg"}}},{"name":"IngestionRouting","id":"UQ8ZXYphv-aYo4OqRKGpRZo9","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"FrF-h96kedKoYW1oYVLu9Q0b","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"52F89AC97A765D8AE0856C885F76FE2F09F1A3892819971ECE28071093BBAA0A","client":"test","metadata":{},"reference":"https://c4.staticflickr.com/5/4056/4713056517_6298c2a071_o.jpg"}}}},"contextId":"0LFjRBuAFW6sv7Dx8nOCBV53"}}
+frontend_1 | 2018-01-31T12:01:28.450172288Z {"@timestamp":"2018-01-31T12:01:28.449+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"XcivB7c8dyKDzOLAVBWcJvm6","details":{"endpoint":"GET /health","transactionId":"h72zB-ALDWkzPbQnam3924cr"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"XcivB7c8dyKDzOLAVBWcJvm6","details":{"endpoint":"GET /health","transactionId":"h72zB-ALDWkzPbQnam3924cr"}}},"contextId":"bKiAXqxIybM986vHusixfer6"}}
+frontend_1 | 2018-01-31T12:01:28.450793607Z {"@timestamp":"2018-01-31T12:01:28.450+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"XcivB7c8dyKDzOLAVBWcJvm6","details":{"endpoint":"GET /health","transactionId":"h72zB-ALDWkzPbQnam3924cr"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"XcivB7c8dyKDzOLAVBWcJvm6","details":{"endpoint":"GET /health","transactionId":"h72zB-ALDWkzPbQnam3924cr"}}},"contextId":"bKiAXqxIybM986vHusixfer6"}}
+frontend_1 | 2018-01-31T12:01:28.454414813Z {"@timestamp":"2018-01-31T12:01:28.454+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"iZTatYcOrZyGCwiSpqoVcMvk","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"qlVHYB9EB7wwgBGfw6uoBfoJ"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"iZTatYcOrZyGCwiSpqoVcMvk","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"qlVHYB9EB7wwgBGfw6uoBfoJ"}}},"contextId":"BhVuLjH7F3vVMlcwA2AIfq5A"}}
+frontend_1 | 2018-01-31T12:01:28.456309540Z {"@timestamp":"2018-01-31T12:01:28.455+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"59r0QJ6boAdSHzkwE9DTBDZf","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"59r0QJ6boAdSHzkwE9DTBDZf","details":{"partnerId":"test-partner-id"}}},"contextId":"BhVuLjH7F3vVMlcwA2AIfq5A"}}
+frontend_1 | 2018-01-31T12:01:28.456917523Z {"@timestamp":"2018-01-31T12:01:28.456+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"59r0QJ6boAdSHzkwE9DTBDZf","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"59r0QJ6boAdSHzkwE9DTBDZf","details":{"partnerId":"test-partner-id"}}},"contextId":"BhVuLjH7F3vVMlcwA2AIfq5A"}}
+frontend_1 | 2018-01-31T12:01:28.457312002Z {"@timestamp":"2018-01-31T12:01:28.456+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"iZTatYcOrZyGCwiSpqoVcMvk","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"qlVHYB9EB7wwgBGfw6uoBfoJ"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"iZTatYcOrZyGCwiSpqoVcMvk","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"qlVHYB9EB7wwgBGfw6uoBfoJ"}}},"contextId":"BhVuLjH7F3vVMlcwA2AIfq5A"}}
+frontend_1 | 2018-01-31T12:01:28.465316467Z {"@timestamp":"2018-01-31T12:01:28.464+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"unTXE7Lic-e3QiHipg1gumvV","details":{}},{"name":"IngestionRouting","id":"59r0QJ6boAdSHzkwE9DTBDZf","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"unTXE7Lic-e3QiHipg1gumvV","details":{}}},"contextId":"BhVuLjH7F3vVMlcwA2AIfq5A"}}
+frontend_1 | 2018-01-31T12:01:28.467714540Z {"@timestamp":"2018-01-31T12:01:28.466+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"unTXE7Lic-e3QiHipg1gumvV","details":{}},{"name":"IngestionRouting","id":"59r0QJ6boAdSHzkwE9DTBDZf","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"unTXE7Lic-e3QiHipg1gumvV","details":{}}},"contextId":"BhVuLjH7F3vVMlcwA2AIfq5A"}}
+frontend_1 | 2018-01-31T12:01:28.468961414Z {"@timestamp":"2018-01-31T12:01:28.468+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"unTXE7Lic-e3QiHipg1gumvV","details":{}},{"name":"IngestionRouting","id":"59r0QJ6boAdSHzkwE9DTBDZf","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"BhVuLjH7F3vVMlcwA2AIfq5A"}}
+frontend_1 | 2018-01-31T12:01:28.552966433Z {"@timestamp":"2018-01-31T12:01:28.551+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"FrF-h96kedKoYW1oYVLu9Q0b","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"52F89AC97A765D8AE0856C885F76FE2F09F1A3892819971ECE28071093BBAA0A","client":"test","metadata":{},"reference":"https://c4.staticflickr.com/5/4056/4713056517_6298c2a071_o.jpg"}}},{"name":"IngestionRouting","id":"UQ8ZXYphv-aYo4OqRKGpRZo9","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(bb34dc91-7693-41e8-18dc-5bf0c94fbaa9)"},"contextId":"0LFjRBuAFW6sv7Dx8nOCBV53"}}
+frontend_1 | 2018-01-31T12:01:28.769364159Z {"@timestamp":"2018-01-31T12:01:28.768+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"unTXE7Lic-e3QiHipg1gumvV","details":{}},{"name":"IngestionRouting","id":"59r0QJ6boAdSHzkwE9DTBDZf","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"BhVuLjH7F3vVMlcwA2AIfq5A"}}
+frontend_1 | 2018-01-31T12:01:28.771495899Z {"@timestamp":"2018-01-31T12:01:28.771+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:29.458286670Z {"@timestamp":"2018-01-31T12:01:29.457+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"VDYmOR2sk5aGmT_-zS2TvSq6","details":{"endpoint":"GET /health","transactionId":"heFYsbnXY_LYHgEIAK-Y33w3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"VDYmOR2sk5aGmT_-zS2TvSq6","details":{"endpoint":"GET /health","transactionId":"heFYsbnXY_LYHgEIAK-Y33w3"}}},"contextId":"KGb4o3WsR0awJfDQeEwj2TZm"}}
+frontend_1 | 2018-01-31T12:01:29.458861683Z {"@timestamp":"2018-01-31T12:01:29.458+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"VDYmOR2sk5aGmT_-zS2TvSq6","details":{"endpoint":"GET /health","transactionId":"heFYsbnXY_LYHgEIAK-Y33w3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"VDYmOR2sk5aGmT_-zS2TvSq6","details":{"endpoint":"GET /health","transactionId":"heFYsbnXY_LYHgEIAK-Y33w3"}}},"contextId":"KGb4o3WsR0awJfDQeEwj2TZm"}}
+frontend_1 | 2018-01-31T12:01:29.487740936Z {"@timestamp":"2018-01-31T12:01:29.485+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"kIT6N-UVK9AsxoW83Qkv-lDG","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"6Q4cK7QfCI4Z7hEyV8BmResW"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"kIT6N-UVK9AsxoW83Qkv-lDG","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"6Q4cK7QfCI4Z7hEyV8BmResW"}}},"contextId":"ga-eocCQN4rcvmQ1MnQjNl9i"}}
+frontend_1 | 2018-01-31T12:01:29.488703980Z {"@timestamp":"2018-01-31T12:01:29.486+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"HkZS1BHlZtqL3wchCjTC5GZN","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"HkZS1BHlZtqL3wchCjTC5GZN","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"ga-eocCQN4rcvmQ1MnQjNl9i"}}
+frontend_1 | 2018-01-31T12:01:29.489611092Z {"@timestamp":"2018-01-31T12:01:29.488+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"HkZS1BHlZtqL3wchCjTC5GZN","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"HkZS1BHlZtqL3wchCjTC5GZN","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"ga-eocCQN4rcvmQ1MnQjNl9i"}}
+frontend_1 | 2018-01-31T12:01:29.490040565Z {"@timestamp":"2018-01-31T12:01:29.489+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"kIT6N-UVK9AsxoW83Qkv-lDG","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"6Q4cK7QfCI4Z7hEyV8BmResW"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"kIT6N-UVK9AsxoW83Qkv-lDG","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"6Q4cK7QfCI4Z7hEyV8BmResW"}}},"contextId":"ga-eocCQN4rcvmQ1MnQjNl9i"}}
+frontend_1 | 2018-01-31T12:01:29.496870430Z {"@timestamp":"2018-01-31T12:01:29.496+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"mHg5tuVM-B28LRnwuZBUhcLW","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"qhvk0kRxlDbfhhuPcdH8CHPX"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"mHg5tuVM-B28LRnwuZBUhcLW","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"qhvk0kRxlDbfhhuPcdH8CHPX"}}},"contextId":"GlMCCtqPVeLjQJGD3GOtSAOp"}}
+frontend_1 | 2018-01-31T12:01:29.498642208Z {"@timestamp":"2018-01-31T12:01:29.498+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"uB8qqQItW0xRS4yki7Jn21Oi","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"uB8qqQItW0xRS4yki7Jn21Oi","details":{"partnerId":"test-partner-id"}}},"contextId":"GlMCCtqPVeLjQJGD3GOtSAOp"}}
+frontend_1 | 2018-01-31T12:01:29.499598501Z {"@timestamp":"2018-01-31T12:01:29.498+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"uB8qqQItW0xRS4yki7Jn21Oi","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"uB8qqQItW0xRS4yki7Jn21Oi","details":{"partnerId":"test-partner-id"}}},"contextId":"GlMCCtqPVeLjQJGD3GOtSAOp"}}
+frontend_1 | 2018-01-31T12:01:29.499953360Z {"@timestamp":"2018-01-31T12:01:29.499+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"mHg5tuVM-B28LRnwuZBUhcLW","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"qhvk0kRxlDbfhhuPcdH8CHPX"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"mHg5tuVM-B28LRnwuZBUhcLW","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"qhvk0kRxlDbfhhuPcdH8CHPX"}}},"contextId":"GlMCCtqPVeLjQJGD3GOtSAOp"}}
+frontend_1 | 2018-01-31T12:01:29.502254173Z {"@timestamp":"2018-01-31T12:01:29.501+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"anvQ4sWqtNPjwrGDBVRx7TLc","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8151/7132553803_c16107f4e0_o.jpg"}}},{"name":"IngestionRouting","id":"uB8qqQItW0xRS4yki7Jn21Oi","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"anvQ4sWqtNPjwrGDBVRx7TLc","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8151/7132553803_c16107f4e0_o.jpg"}}}},"contextId":"GlMCCtqPVeLjQJGD3GOtSAOp"}}
+frontend_1 | 2018-01-31T12:01:29.504742659Z {"@timestamp":"2018-01-31T12:01:29.504+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"qc-p9q2UpW3jReSNUApFHKsl","details":{}},{"name":"IngestionRouting","id":"HkZS1BHlZtqL3wchCjTC5GZN","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"qc-p9q2UpW3jReSNUApFHKsl","details":{}}},"contextId":"ga-eocCQN4rcvmQ1MnQjNl9i"}}
+frontend_1 | 2018-01-31T12:01:29.504986892Z {"@timestamp":"2018-01-31T12:01:29.504+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"anvQ4sWqtNPjwrGDBVRx7TLc","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8151/7132553803_c16107f4e0_o.jpg"}}},{"name":"IngestionRouting","id":"uB8qqQItW0xRS4yki7Jn21Oi","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"anvQ4sWqtNPjwrGDBVRx7TLc","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8151/7132553803_c16107f4e0_o.jpg"}}}},"contextId":"GlMCCtqPVeLjQJGD3GOtSAOp"}}
+frontend_1 | 2018-01-31T12:01:29.505167107Z {"@timestamp":"2018-01-31T12:01:29.504+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"qc-p9q2UpW3jReSNUApFHKsl","details":{}},{"name":"IngestionRouting","id":"HkZS1BHlZtqL3wchCjTC5GZN","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"qc-p9q2UpW3jReSNUApFHKsl","details":{}}},"contextId":"ga-eocCQN4rcvmQ1MnQjNl9i"}}
+frontend_1 | 2018-01-31T12:01:29.505657613Z {"@timestamp":"2018-01-31T12:01:29.505+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"QXNzT2M342V88FjVxyfoHfLL","details":{"message":{"partnerId":"test-partner-id","masterId":"2EF250A5DC412379A40C751E044108FC50E49999C2351354FCAE29B93ED32F95","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8151/7132553803_c16107f4e0_o.jpg"}}},{"name":"IngestionRouting","id":"uB8qqQItW0xRS4yki7Jn21Oi","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"QXNzT2M342V88FjVxyfoHfLL","details":{"message":{"partnerId":"test-partner-id","masterId":"2EF250A5DC412379A40C751E044108FC50E49999C2351354FCAE29B93ED32F95","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8151/7132553803_c16107f4e0_o.jpg"}}}},"contextId":"GlMCCtqPVeLjQJGD3GOtSAOp"}}
+frontend_1 | 2018-01-31T12:01:29.505932792Z {"@timestamp":"2018-01-31T12:01:29.505+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"qc-p9q2UpW3jReSNUApFHKsl","details":{}},{"name":"IngestionRouting","id":"HkZS1BHlZtqL3wchCjTC5GZN","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"ga-eocCQN4rcvmQ1MnQjNl9i"}}
+frontend_1 | 2018-01-31T12:01:29.506446740Z {"@timestamp":"2018-01-31T12:01:29.506+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"QXNzT2M342V88FjVxyfoHfLL","details":{"message":{"partnerId":"test-partner-id","masterId":"2EF250A5DC412379A40C751E044108FC50E49999C2351354FCAE29B93ED32F95","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8151/7132553803_c16107f4e0_o.jpg"}}},{"name":"IngestionRouting","id":"uB8qqQItW0xRS4yki7Jn21Oi","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"QXNzT2M342V88FjVxyfoHfLL","details":{"message":{"partnerId":"test-partner-id","masterId":"2EF250A5DC412379A40C751E044108FC50E49999C2351354FCAE29B93ED32F95","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8151/7132553803_c16107f4e0_o.jpg"}}}},"contextId":"GlMCCtqPVeLjQJGD3GOtSAOp"}}
+frontend_1 | 2018-01-31T12:01:29.596022214Z {"@timestamp":"2018-01-31T12:01:29.595+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"QXNzT2M342V88FjVxyfoHfLL","details":{"message":{"partnerId":"test-partner-id","masterId":"2EF250A5DC412379A40C751E044108FC50E49999C2351354FCAE29B93ED32F95","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/9/8151/7132553803_c16107f4e0_o.jpg"}}},{"name":"IngestionRouting","id":"uB8qqQItW0xRS4yki7Jn21Oi","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(46cd6366-6ada-190f-cc47-33601f7c2857)"},"contextId":"GlMCCtqPVeLjQJGD3GOtSAOp"}}
+frontend_1 | 2018-01-31T12:01:30.301550068Z {"@timestamp":"2018-01-31T12:01:30.300+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"qc-p9q2UpW3jReSNUApFHKsl","details":{}},{"name":"IngestionRouting","id":"HkZS1BHlZtqL3wchCjTC5GZN","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"ga-eocCQN4rcvmQ1MnQjNl9i"}}
+frontend_1 | 2018-01-31T12:01:30.306890722Z {"@timestamp":"2018-01-31T12:01:30.305+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:31.481381435Z {"@timestamp":"2018-01-31T12:01:31.480+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"PpQr-l3Ey4qPqZZPCZ8G4kUq","details":{"endpoint":"GET /health","transactionId":"ztjqv_mFAzGE_ECSaDkD8Bfw"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"PpQr-l3Ey4qPqZZPCZ8G4kUq","details":{"endpoint":"GET /health","transactionId":"ztjqv_mFAzGE_ECSaDkD8Bfw"}}},"contextId":"8eBLlaPAtjdhJcPeOXe1Caye"}}
+frontend_1 | 2018-01-31T12:01:31.481530088Z {"@timestamp":"2018-01-31T12:01:31.481+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"PpQr-l3Ey4qPqZZPCZ8G4kUq","details":{"endpoint":"GET /health","transactionId":"ztjqv_mFAzGE_ECSaDkD8Bfw"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"PpQr-l3Ey4qPqZZPCZ8G4kUq","details":{"endpoint":"GET /health","transactionId":"ztjqv_mFAzGE_ECSaDkD8Bfw"}}},"contextId":"8eBLlaPAtjdhJcPeOXe1Caye"}}
+frontend_1 | 2018-01-31T12:01:31.516876655Z {"@timestamp":"2018-01-31T12:01:31.516+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"jKkJF87zoH2K0EmKBQ--0hs1","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"dirUN19nOENl5VFiIzDdaabs"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"jKkJF87zoH2K0EmKBQ--0hs1","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"dirUN19nOENl5VFiIzDdaabs"}}},"contextId":"C8HzTSF5qt3DUbG5_1htmRIy"}}
+frontend_1 | 2018-01-31T12:01:31.517567645Z {"@timestamp":"2018-01-31T12:01:31.516+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"Juq1kMs-oN6diq8sz_foLchc","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"Juq1kMs-oN6diq8sz_foLchc","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"C8HzTSF5qt3DUbG5_1htmRIy"}}
+frontend_1 | 2018-01-31T12:01:31.518076343Z {"@timestamp":"2018-01-31T12:01:31.517+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"Juq1kMs-oN6diq8sz_foLchc","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"Juq1kMs-oN6diq8sz_foLchc","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"C8HzTSF5qt3DUbG5_1htmRIy"}}
+frontend_1 | 2018-01-31T12:01:31.518518296Z {"@timestamp":"2018-01-31T12:01:31.518+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"jKkJF87zoH2K0EmKBQ--0hs1","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"dirUN19nOENl5VFiIzDdaabs"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"jKkJF87zoH2K0EmKBQ--0hs1","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"dirUN19nOENl5VFiIzDdaabs"}}},"contextId":"C8HzTSF5qt3DUbG5_1htmRIy"}}
+frontend_1 | 2018-01-31T12:01:31.532379552Z {"@timestamp":"2018-01-31T12:01:31.531+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"o8o2ZzW91cFMrbnvhczPdw9Q","details":{}},{"name":"IngestionRouting","id":"Juq1kMs-oN6diq8sz_foLchc","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"o8o2ZzW91cFMrbnvhczPdw9Q","details":{}}},"contextId":"C8HzTSF5qt3DUbG5_1htmRIy"}}
+frontend_1 | 2018-01-31T12:01:31.532646033Z {"@timestamp":"2018-01-31T12:01:31.532+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"o8o2ZzW91cFMrbnvhczPdw9Q","details":{}},{"name":"IngestionRouting","id":"Juq1kMs-oN6diq8sz_foLchc","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"o8o2ZzW91cFMrbnvhczPdw9Q","details":{}}},"contextId":"C8HzTSF5qt3DUbG5_1htmRIy"}}
+frontend_1 | 2018-01-31T12:01:31.533544488Z {"@timestamp":"2018-01-31T12:01:31.533+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"o8o2ZzW91cFMrbnvhczPdw9Q","details":{}},{"name":"IngestionRouting","id":"Juq1kMs-oN6diq8sz_foLchc","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"C8HzTSF5qt3DUbG5_1htmRIy"}}
+frontend_1 | 2018-01-31T12:01:31.619568600Z {"@timestamp":"2018-01-31T12:01:31.618+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"eGLeZUvFvPpy18_uaWcDosj0","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"J_1Z49jjHtqRweM1GquZbMaF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"eGLeZUvFvPpy18_uaWcDosj0","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"J_1Z49jjHtqRweM1GquZbMaF"}}},"contextId":"_5MbQ5uL1_-75mS5pPULKna2"}}
+frontend_1 | 2018-01-31T12:01:31.620843042Z {"@timestamp":"2018-01-31T12:01:31.620+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"tVTxiopu5P3LgOEpjSIklN2f","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"tVTxiopu5P3LgOEpjSIklN2f","details":{"partnerId":"test-partner-id"}}},"contextId":"_5MbQ5uL1_-75mS5pPULKna2"}}
+frontend_1 | 2018-01-31T12:01:31.621889285Z {"@timestamp":"2018-01-31T12:01:31.621+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"tVTxiopu5P3LgOEpjSIklN2f","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"tVTxiopu5P3LgOEpjSIklN2f","details":{"partnerId":"test-partner-id"}}},"contextId":"_5MbQ5uL1_-75mS5pPULKna2"}}
+frontend_1 | 2018-01-31T12:01:31.622315174Z {"@timestamp":"2018-01-31T12:01:31.621+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"eGLeZUvFvPpy18_uaWcDosj0","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"J_1Z49jjHtqRweM1GquZbMaF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"eGLeZUvFvPpy18_uaWcDosj0","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"J_1Z49jjHtqRweM1GquZbMaF"}}},"contextId":"_5MbQ5uL1_-75mS5pPULKna2"}}
+frontend_1 | 2018-01-31T12:01:31.623830549Z {"@timestamp":"2018-01-31T12:01:31.623+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"0O25a2e3BYBM2CsrYfJadcoD","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/7033/6529009249_4e0b628cf9_o.jpg"}}},{"name":"IngestionRouting","id":"tVTxiopu5P3LgOEpjSIklN2f","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"0O25a2e3BYBM2CsrYfJadcoD","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/7033/6529009249_4e0b628cf9_o.jpg"}}}},"contextId":"_5MbQ5uL1_-75mS5pPULKna2"}}
+frontend_1 | 2018-01-31T12:01:31.626247736Z {"@timestamp":"2018-01-31T12:01:31.624+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"0O25a2e3BYBM2CsrYfJadcoD","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/7033/6529009249_4e0b628cf9_o.jpg"}}},{"name":"IngestionRouting","id":"tVTxiopu5P3LgOEpjSIklN2f","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"0O25a2e3BYBM2CsrYfJadcoD","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/7033/6529009249_4e0b628cf9_o.jpg"}}}},"contextId":"_5MbQ5uL1_-75mS5pPULKna2"}}
+frontend_1 | 2018-01-31T12:01:31.626905961Z {"@timestamp":"2018-01-31T12:01:31.626+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"Z-I-ObOi8AXgqa9tycc2aFzH","details":{"message":{"partnerId":"test-partner-id","masterId":"EAE17C5BD2B2D14D6A3760FA2FBC5C42D8E0389BB0D5CECF4E9A1F25B3021045","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/7033/6529009249_4e0b628cf9_o.jpg"}}},{"name":"IngestionRouting","id":"tVTxiopu5P3LgOEpjSIklN2f","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"Z-I-ObOi8AXgqa9tycc2aFzH","details":{"message":{"partnerId":"test-partner-id","masterId":"EAE17C5BD2B2D14D6A3760FA2FBC5C42D8E0389BB0D5CECF4E9A1F25B3021045","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/7033/6529009249_4e0b628cf9_o.jpg"}}}},"contextId":"_5MbQ5uL1_-75mS5pPULKna2"}}
+frontend_1 | 2018-01-31T12:01:31.627516145Z {"@timestamp":"2018-01-31T12:01:31.626+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"Z-I-ObOi8AXgqa9tycc2aFzH","details":{"message":{"partnerId":"test-partner-id","masterId":"EAE17C5BD2B2D14D6A3760FA2FBC5C42D8E0389BB0D5CECF4E9A1F25B3021045","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/7033/6529009249_4e0b628cf9_o.jpg"}}},{"name":"IngestionRouting","id":"tVTxiopu5P3LgOEpjSIklN2f","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"Z-I-ObOi8AXgqa9tycc2aFzH","details":{"message":{"partnerId":"test-partner-id","masterId":"EAE17C5BD2B2D14D6A3760FA2FBC5C42D8E0389BB0D5CECF4E9A1F25B3021045","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/7033/6529009249_4e0b628cf9_o.jpg"}}}},"contextId":"_5MbQ5uL1_-75mS5pPULKna2"}}
+frontend_1 | 2018-01-31T12:01:31.710073965Z {"@timestamp":"2018-01-31T12:01:31.709+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"Z-I-ObOi8AXgqa9tycc2aFzH","details":{"message":{"partnerId":"test-partner-id","masterId":"EAE17C5BD2B2D14D6A3760FA2FBC5C42D8E0389BB0D5CECF4E9A1F25B3021045","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/7033/6529009249_4e0b628cf9_o.jpg"}}},{"name":"IngestionRouting","id":"tVTxiopu5P3LgOEpjSIklN2f","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(ddb2ae97-6ae0-147d-8ec9-e1bb23f45747)"},"contextId":"_5MbQ5uL1_-75mS5pPULKna2"}}
+frontend_1 | 2018-01-31T12:01:31.855884276Z {"@timestamp":"2018-01-31T12:01:31.854+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"o8o2ZzW91cFMrbnvhczPdw9Q","details":{}},{"name":"IngestionRouting","id":"Juq1kMs-oN6diq8sz_foLchc","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"C8HzTSF5qt3DUbG5_1htmRIy"}}
+frontend_1 | 2018-01-31T12:01:31.860673221Z {"@timestamp":"2018-01-31T12:01:31.857+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:38.362151945Z {"@timestamp":"2018-01-31T12:01:38.359+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"EVQR-dvD_b1Q2OJ7syw3eG2v","details":{"endpoint":"GET /health","transactionId":"DQUTlIjcphKmiAf9uWVGevXy"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"EVQR-dvD_b1Q2OJ7syw3eG2v","details":{"endpoint":"GET /health","transactionId":"DQUTlIjcphKmiAf9uWVGevXy"}}},"contextId":"z2VbtRpCIbr9E8qj2jZ_aBLw"}}
+frontend_1 | 2018-01-31T12:01:38.365793589Z {"@timestamp":"2018-01-31T12:01:38.365+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"EVQR-dvD_b1Q2OJ7syw3eG2v","details":{"endpoint":"GET /health","transactionId":"DQUTlIjcphKmiAf9uWVGevXy"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"EVQR-dvD_b1Q2OJ7syw3eG2v","details":{"endpoint":"GET /health","transactionId":"DQUTlIjcphKmiAf9uWVGevXy"}}},"contextId":"z2VbtRpCIbr9E8qj2jZ_aBLw"}}
+frontend_1 | 2018-01-31T12:01:38.435936604Z {"@timestamp":"2018-01-31T12:01:38.435+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"tuSe977aTAPz1U0CbpZi1H9T","details":{"endpoint":"GET /health","transactionId":"flB-EgA5hKRxmTjJNMzut6f8"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"tuSe977aTAPz1U0CbpZi1H9T","details":{"endpoint":"GET /health","transactionId":"flB-EgA5hKRxmTjJNMzut6f8"}}},"contextId":"JFBznvY5n8Sr6wxePcdjhczO"}}
+frontend_1 | 2018-01-31T12:01:38.437002070Z {"@timestamp":"2018-01-31T12:01:38.436+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"tuSe977aTAPz1U0CbpZi1H9T","details":{"endpoint":"GET /health","transactionId":"flB-EgA5hKRxmTjJNMzut6f8"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"tuSe977aTAPz1U0CbpZi1H9T","details":{"endpoint":"GET /health","transactionId":"flB-EgA5hKRxmTjJNMzut6f8"}}},"contextId":"JFBznvY5n8Sr6wxePcdjhczO"}}
+frontend_1 | 2018-01-31T12:01:38.476876260Z {"@timestamp":"2018-01-31T12:01:38.476+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"GxJUP3UWhUU9i3TtXe4lL9fb","details":{"endpoint":"GET /health","transactionId":"J9mMMY1Nac6bUsbgJXz4kWL6"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"GxJUP3UWhUU9i3TtXe4lL9fb","details":{"endpoint":"GET /health","transactionId":"J9mMMY1Nac6bUsbgJXz4kWL6"}}},"contextId":"D3TIltpvGWWOEx0X2KK7Mmlt"}}
+frontend_1 | 2018-01-31T12:01:38.485035928Z {"@timestamp":"2018-01-31T12:01:38.484+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"ydx9xgG1bIcdEMNbQ63XLmnz","details":{"endpoint":"GET /health","transactionId":"t-IyVhP6sWpCkbevOs6vfmnn"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"ydx9xgG1bIcdEMNbQ63XLmnz","details":{"endpoint":"GET /health","transactionId":"t-IyVhP6sWpCkbevOs6vfmnn"}}},"contextId":"9CdmqqaS4Aw25OaowDpPfMSB"}}
+frontend_1 | 2018-01-31T12:01:38.485366386Z {"@timestamp":"2018-01-31T12:01:38.484+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"pxFP84a_fHvubm9PV_JUaKfm","details":{"endpoint":"GET /health","transactionId":"7nUcRnGL3sb56xuRxThuWngM"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"pxFP84a_fHvubm9PV_JUaKfm","details":{"endpoint":"GET /health","transactionId":"7nUcRnGL3sb56xuRxThuWngM"}}},"contextId":"PKDcITph5MvExdKwX78ONnqT"}}
+frontend_1 | 2018-01-31T12:01:38.485807701Z {"@timestamp":"2018-01-31T12:01:38.485+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"pxFP84a_fHvubm9PV_JUaKfm","details":{"endpoint":"GET /health","transactionId":"7nUcRnGL3sb56xuRxThuWngM"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"pxFP84a_fHvubm9PV_JUaKfm","details":{"endpoint":"GET /health","transactionId":"7nUcRnGL3sb56xuRxThuWngM"}}},"contextId":"PKDcITph5MvExdKwX78ONnqT"}}
+frontend_1 | 2018-01-31T12:01:38.486273798Z {"@timestamp":"2018-01-31T12:01:38.485+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"ydx9xgG1bIcdEMNbQ63XLmnz","details":{"endpoint":"GET /health","transactionId":"t-IyVhP6sWpCkbevOs6vfmnn"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"ydx9xgG1bIcdEMNbQ63XLmnz","details":{"endpoint":"GET /health","transactionId":"t-IyVhP6sWpCkbevOs6vfmnn"}}},"contextId":"9CdmqqaS4Aw25OaowDpPfMSB"}}
+frontend_1 | 2018-01-31T12:01:38.488143334Z {"@timestamp":"2018-01-31T12:01:38.477+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"GxJUP3UWhUU9i3TtXe4lL9fb","details":{"endpoint":"GET /health","transactionId":"J9mMMY1Nac6bUsbgJXz4kWL6"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"GxJUP3UWhUU9i3TtXe4lL9fb","details":{"endpoint":"GET /health","transactionId":"J9mMMY1Nac6bUsbgJXz4kWL6"}}},"contextId":"D3TIltpvGWWOEx0X2KK7Mmlt"}}
+frontend_1 | 2018-01-31T12:01:38.509949944Z {"@timestamp":"2018-01-31T12:01:38.509+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"9XYLIkw73SPkIFTN21yYV-Vi","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"ilM0fJcKq3Yyfwnedkxweox8"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"9XYLIkw73SPkIFTN21yYV-Vi","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"ilM0fJcKq3Yyfwnedkxweox8"}}},"contextId":"dWFATwJT7fGVZyb57f5zqI5c"}}
+frontend_1 | 2018-01-31T12:01:38.513512586Z {"@timestamp":"2018-01-31T12:01:38.512+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"Tma8HT1clM0a91TkXwapQgfO","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"Tma8HT1clM0a91TkXwapQgfO","details":{"partnerId":"test-partner-id"}}},"contextId":"dWFATwJT7fGVZyb57f5zqI5c"}}
+frontend_1 | 2018-01-31T12:01:38.516023080Z {"@timestamp":"2018-01-31T12:01:38.513+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"Tma8HT1clM0a91TkXwapQgfO","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"Tma8HT1clM0a91TkXwapQgfO","details":{"partnerId":"test-partner-id"}}},"contextId":"dWFATwJT7fGVZyb57f5zqI5c"}}
+frontend_1 | 2018-01-31T12:01:38.516931569Z {"@timestamp":"2018-01-31T12:01:38.516+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"9XYLIkw73SPkIFTN21yYV-Vi","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"ilM0fJcKq3Yyfwnedkxweox8"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"9XYLIkw73SPkIFTN21yYV-Vi","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"ilM0fJcKq3Yyfwnedkxweox8"}}},"contextId":"dWFATwJT7fGVZyb57f5zqI5c"}}
+frontend_1 | 2018-01-31T12:01:38.518681814Z {"@timestamp":"2018-01-31T12:01:38.517+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"Yp-nR31CnCbh3B311kL3yJ1G","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"Pid0tgu61-jqgl0ybScsuydS"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"Yp-nR31CnCbh3B311kL3yJ1G","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"Pid0tgu61-jqgl0ybScsuydS"}}},"contextId":"pvN3icex3GbmJmF25dCc12n9"}}
+frontend_1 | 2018-01-31T12:01:38.522062966Z {"@timestamp":"2018-01-31T12:01:38.521+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"_4tPhdZ7gqqxPjaWwR_16YlP","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/427/19029049804_c7f32f63ca_o.jpg"}}},{"name":"IngestionRouting","id":"Tma8HT1clM0a91TkXwapQgfO","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"_4tPhdZ7gqqxPjaWwR_16YlP","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/427/19029049804_c7f32f63ca_o.jpg"}}}},"contextId":"dWFATwJT7fGVZyb57f5zqI5c"}}
+frontend_1 | 2018-01-31T12:01:38.522248539Z {"@timestamp":"2018-01-31T12:01:38.519+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"vJoXBqOb4TRnu3MMxH6tJvIM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"vJoXBqOb4TRnu3MMxH6tJvIM","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"pvN3icex3GbmJmF25dCc12n9"}}
+frontend_1 | 2018-01-31T12:01:38.523348368Z {"@timestamp":"2018-01-31T12:01:38.522+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"vJoXBqOb4TRnu3MMxH6tJvIM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"vJoXBqOb4TRnu3MMxH6tJvIM","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"pvN3icex3GbmJmF25dCc12n9"}}
+frontend_1 | 2018-01-31T12:01:38.524471580Z {"@timestamp":"2018-01-31T12:01:38.523+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"Yp-nR31CnCbh3B311kL3yJ1G","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"Pid0tgu61-jqgl0ybScsuydS"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"Yp-nR31CnCbh3B311kL3yJ1G","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"Pid0tgu61-jqgl0ybScsuydS"}}},"contextId":"pvN3icex3GbmJmF25dCc12n9"}}
+frontend_1 | 2018-01-31T12:01:38.526136179Z {"@timestamp":"2018-01-31T12:01:38.525+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"G4w_7zinCaXLXCyyoaX3_aE4","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"wwt9QHlIQQePq0g_CyQLPaTd"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"G4w_7zinCaXLXCyyoaX3_aE4","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"wwt9QHlIQQePq0g_CyQLPaTd"}}},"contextId":"LyY7bq2Mwq_C8jdkAOdVZfqU"}}
+frontend_1 | 2018-01-31T12:01:38.528246442Z {"@timestamp":"2018-01-31T12:01:38.527+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"Nb7BbpmTyjCL19E3F0S1RO6Y","details":{"request":{"client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/238/459709286_3fa79412c8_o.jpg"}}},{"name":"IngestionRouting","id":"vJoXBqOb4TRnu3MMxH6tJvIM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"Nb7BbpmTyjCL19E3F0S1RO6Y","details":{"request":{"client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/238/459709286_3fa79412c8_o.jpg"}}}},"contextId":"pvN3icex3GbmJmF25dCc12n9"}}
+frontend_1 | 2018-01-31T12:01:38.529500956Z {"@timestamp":"2018-01-31T12:01:38.529+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"Nb7BbpmTyjCL19E3F0S1RO6Y","details":{"request":{"client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/238/459709286_3fa79412c8_o.jpg"}}},{"name":"IngestionRouting","id":"vJoXBqOb4TRnu3MMxH6tJvIM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"Nb7BbpmTyjCL19E3F0S1RO6Y","details":{"request":{"client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/238/459709286_3fa79412c8_o.jpg"}}}},"contextId":"pvN3icex3GbmJmF25dCc12n9"}}
+frontend_1 | 2018-01-31T12:01:38.529832824Z {"@timestamp":"2018-01-31T12:01:38.526+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"NJazx6wC01aBYC38QlgJIm0X","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"NJazx6wC01aBYC38QlgJIm0X","details":{"partnerId":"test-partner-id"}}},"contextId":"LyY7bq2Mwq_C8jdkAOdVZfqU"}}
+frontend_1 | 2018-01-31T12:01:38.530117364Z {"@timestamp":"2018-01-31T12:01:38.529+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"y9BhP1QbBzf7YgBon0UnI_m7","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"wPRQWLIYkmHCfCKyImQUDZcm"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"y9BhP1QbBzf7YgBon0UnI_m7","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"wPRQWLIYkmHCfCKyImQUDZcm"}}},"contextId":"poyadjbt9W3P6WHgr8mzv61o"}}
+frontend_1 | 2018-01-31T12:01:38.530937036Z {"@timestamp":"2018-01-31T12:01:38.530+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"kE5g9WP9CfFzoJqfRKSvekTM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"kE5g9WP9CfFzoJqfRKSvekTM","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"poyadjbt9W3P6WHgr8mzv61o"}}
+frontend_1 | 2018-01-31T12:01:38.531812652Z {"@timestamp":"2018-01-31T12:01:38.531+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"kE5g9WP9CfFzoJqfRKSvekTM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"kE5g9WP9CfFzoJqfRKSvekTM","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"poyadjbt9W3P6WHgr8mzv61o"}}
+frontend_1 | 2018-01-31T12:01:38.532374296Z {"@timestamp":"2018-01-31T12:01:38.531+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"NJazx6wC01aBYC38QlgJIm0X","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"NJazx6wC01aBYC38QlgJIm0X","details":{"partnerId":"test-partner-id"}}},"contextId":"LyY7bq2Mwq_C8jdkAOdVZfqU"}}
+frontend_1 | 2018-01-31T12:01:38.532427185Z {"@timestamp":"2018-01-31T12:01:38.531+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"aW2lT2O42dCkcOfiRpfndozH","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"C8CB557B9EED6F6B02F10CC2FC4779460DD351E68FBD15B960F774D80242C791","client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/238/459709286_3fa79412c8_o.jpg"}}},{"name":"IngestionRouting","id":"vJoXBqOb4TRnu3MMxH6tJvIM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"aW2lT2O42dCkcOfiRpfndozH","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"C8CB557B9EED6F6B02F10CC2FC4779460DD351E68FBD15B960F774D80242C791","client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/238/459709286_3fa79412c8_o.jpg"}}}},"contextId":"pvN3icex3GbmJmF25dCc12n9"}}
+frontend_1 | 2018-01-31T12:01:38.534035324Z {"@timestamp":"2018-01-31T12:01:38.533+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"_4tPhdZ7gqqxPjaWwR_16YlP","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/427/19029049804_c7f32f63ca_o.jpg"}}},{"name":"IngestionRouting","id":"Tma8HT1clM0a91TkXwapQgfO","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"_4tPhdZ7gqqxPjaWwR_16YlP","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/427/19029049804_c7f32f63ca_o.jpg"}}}},"contextId":"dWFATwJT7fGVZyb57f5zqI5c"}}
+frontend_1 | 2018-01-31T12:01:38.535766729Z {"@timestamp":"2018-01-31T12:01:38.535+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"G4w_7zinCaXLXCyyoaX3_aE4","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"wwt9QHlIQQePq0g_CyQLPaTd"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"G4w_7zinCaXLXCyyoaX3_aE4","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"wwt9QHlIQQePq0g_CyQLPaTd"}}},"contextId":"LyY7bq2Mwq_C8jdkAOdVZfqU"}}
+frontend_1 | 2018-01-31T12:01:38.536655870Z {"@timestamp":"2018-01-31T12:01:38.535+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"aW2lT2O42dCkcOfiRpfndozH","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"C8CB557B9EED6F6B02F10CC2FC4779460DD351E68FBD15B960F774D80242C791","client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/238/459709286_3fa79412c8_o.jpg"}}},{"name":"IngestionRouting","id":"vJoXBqOb4TRnu3MMxH6tJvIM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"aW2lT2O42dCkcOfiRpfndozH","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"C8CB557B9EED6F6B02F10CC2FC4779460DD351E68FBD15B960F774D80242C791","client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/238/459709286_3fa79412c8_o.jpg"}}}},"contextId":"pvN3icex3GbmJmF25dCc12n9"}}
+frontend_1 | 2018-01-31T12:01:38.539137807Z {"@timestamp":"2018-01-31T12:01:38.531+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"y9BhP1QbBzf7YgBon0UnI_m7","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"wPRQWLIYkmHCfCKyImQUDZcm"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"y9BhP1QbBzf7YgBon0UnI_m7","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"wPRQWLIYkmHCfCKyImQUDZcm"}}},"contextId":"poyadjbt9W3P6WHgr8mzv61o"}}
+frontend_1 | 2018-01-31T12:01:38.539868393Z {"@timestamp":"2018-01-31T12:01:38.539+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"SFdW7972WHJ6fZ5e6tpSughg","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7443/13357655254_1ab2cbf404_o.jpg"}}},{"name":"IngestionRouting","id":"NJazx6wC01aBYC38QlgJIm0X","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"SFdW7972WHJ6fZ5e6tpSughg","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7443/13357655254_1ab2cbf404_o.jpg"}}}},"contextId":"LyY7bq2Mwq_C8jdkAOdVZfqU"}}
+frontend_1 | 2018-01-31T12:01:38.541363658Z {"@timestamp":"2018-01-31T12:01:38.540+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"W5iB0wer0J4bZ9fjsdHTV9Yb","details":{"request":{"client":"test","metadata":{},"reference":"https://c7.staticflickr.com/9/8672/16533947010_c00cb6fca6_o.jpg"}}},{"name":"IngestionRouting","id":"kE5g9WP9CfFzoJqfRKSvekTM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"W5iB0wer0J4bZ9fjsdHTV9Yb","details":{"request":{"client":"test","metadata":{},"reference":"https://c7.staticflickr.com/9/8672/16533947010_c00cb6fca6_o.jpg"}}}},"contextId":"poyadjbt9W3P6WHgr8mzv61o"}}
+frontend_1 | 2018-01-31T12:01:38.541950636Z {"@timestamp":"2018-01-31T12:01:38.533+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"ooReUEfhYbnGV_JnxmjCX4GH","details":{"message":{"partnerId":"test-partner-id","masterId":"B7F0B1B8769BF15099F6361A8B31B99E2724B3A0DE80EEBDDADBD8AD1986FC73","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/427/19029049804_c7f32f63ca_o.jpg"}}},{"name":"IngestionRouting","id":"Tma8HT1clM0a91TkXwapQgfO","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"ooReUEfhYbnGV_JnxmjCX4GH","details":{"message":{"partnerId":"test-partner-id","masterId":"B7F0B1B8769BF15099F6361A8B31B99E2724B3A0DE80EEBDDADBD8AD1986FC73","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/427/19029049804_c7f32f63ca_o.jpg"}}}},"contextId":"dWFATwJT7fGVZyb57f5zqI5c"}}
+frontend_1 | 2018-01-31T12:01:38.547602018Z {"@timestamp":"2018-01-31T12:01:38.545+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"SFdW7972WHJ6fZ5e6tpSughg","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7443/13357655254_1ab2cbf404_o.jpg"}}},{"name":"IngestionRouting","id":"NJazx6wC01aBYC38QlgJIm0X","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"SFdW7972WHJ6fZ5e6tpSughg","details":{"request":{"client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7443/13357655254_1ab2cbf404_o.jpg"}}}},"contextId":"LyY7bq2Mwq_C8jdkAOdVZfqU"}}
+frontend_1 | 2018-01-31T12:01:38.548526919Z {"@timestamp":"2018-01-31T12:01:38.548+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"ooReUEfhYbnGV_JnxmjCX4GH","details":{"message":{"partnerId":"test-partner-id","masterId":"B7F0B1B8769BF15099F6361A8B31B99E2724B3A0DE80EEBDDADBD8AD1986FC73","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/427/19029049804_c7f32f63ca_o.jpg"}}},{"name":"IngestionRouting","id":"Tma8HT1clM0a91TkXwapQgfO","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"ooReUEfhYbnGV_JnxmjCX4GH","details":{"message":{"partnerId":"test-partner-id","masterId":"B7F0B1B8769BF15099F6361A8B31B99E2724B3A0DE80EEBDDADBD8AD1986FC73","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/427/19029049804_c7f32f63ca_o.jpg"}}}},"contextId":"dWFATwJT7fGVZyb57f5zqI5c"}}
+frontend_1 | 2018-01-31T12:01:38.549570564Z {"@timestamp":"2018-01-31T12:01:38.549+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"c-i6kwzhLhOvM8f85SpVWvLe","details":{"message":{"partnerId":"test-partner-id","masterId":"9FFA6B90DB541F98F31901664D20690256C165B29A94E91E3B1288478F9A7FF8","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7443/13357655254_1ab2cbf404_o.jpg"}}},{"name":"IngestionRouting","id":"NJazx6wC01aBYC38QlgJIm0X","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"c-i6kwzhLhOvM8f85SpVWvLe","details":{"message":{"partnerId":"test-partner-id","masterId":"9FFA6B90DB541F98F31901664D20690256C165B29A94E91E3B1288478F9A7FF8","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7443/13357655254_1ab2cbf404_o.jpg"}}}},"contextId":"LyY7bq2Mwq_C8jdkAOdVZfqU"}}
+frontend_1 | 2018-01-31T12:01:38.552343309Z {"@timestamp":"2018-01-31T12:01:38.551+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"W5iB0wer0J4bZ9fjsdHTV9Yb","details":{"request":{"client":"test","metadata":{},"reference":"https://c7.staticflickr.com/9/8672/16533947010_c00cb6fca6_o.jpg"}}},{"name":"IngestionRouting","id":"kE5g9WP9CfFzoJqfRKSvekTM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"W5iB0wer0J4bZ9fjsdHTV9Yb","details":{"request":{"client":"test","metadata":{},"reference":"https://c7.staticflickr.com/9/8672/16533947010_c00cb6fca6_o.jpg"}}}},"contextId":"poyadjbt9W3P6WHgr8mzv61o"}}
+frontend_1 | 2018-01-31T12:01:38.554377317Z {"@timestamp":"2018-01-31T12:01:38.553+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"ltmsi6zgk5T0ziaAWbibFDWd","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"3E220EBA2764363F4FEFEC529935835EF846F6D68757C07470B805CAEE4AA126","client":"test","metadata":{},"reference":"https://c7.staticflickr.com/9/8672/16533947010_c00cb6fca6_o.jpg"}}},{"name":"IngestionRouting","id":"kE5g9WP9CfFzoJqfRKSvekTM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"ltmsi6zgk5T0ziaAWbibFDWd","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"3E220EBA2764363F4FEFEC529935835EF846F6D68757C07470B805CAEE4AA126","client":"test","metadata":{},"reference":"https://c7.staticflickr.com/9/8672/16533947010_c00cb6fca6_o.jpg"}}}},"contextId":"poyadjbt9W3P6WHgr8mzv61o"}}
+frontend_1 | 2018-01-31T12:01:38.555085886Z {"@timestamp":"2018-01-31T12:01:38.554+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"ltmsi6zgk5T0ziaAWbibFDWd","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"3E220EBA2764363F4FEFEC529935835EF846F6D68757C07470B805CAEE4AA126","client":"test","metadata":{},"reference":"https://c7.staticflickr.com/9/8672/16533947010_c00cb6fca6_o.jpg"}}},{"name":"IngestionRouting","id":"kE5g9WP9CfFzoJqfRKSvekTM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"ltmsi6zgk5T0ziaAWbibFDWd","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"3E220EBA2764363F4FEFEC529935835EF846F6D68757C07470B805CAEE4AA126","client":"test","metadata":{},"reference":"https://c7.staticflickr.com/9/8672/16533947010_c00cb6fca6_o.jpg"}}}},"contextId":"poyadjbt9W3P6WHgr8mzv61o"}}
+frontend_1 | 2018-01-31T12:01:38.555817941Z {"@timestamp":"2018-01-31T12:01:38.554+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"c-i6kwzhLhOvM8f85SpVWvLe","details":{"message":{"partnerId":"test-partner-id","masterId":"9FFA6B90DB541F98F31901664D20690256C165B29A94E91E3B1288478F9A7FF8","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7443/13357655254_1ab2cbf404_o.jpg"}}},{"name":"IngestionRouting","id":"NJazx6wC01aBYC38QlgJIm0X","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"c-i6kwzhLhOvM8f85SpVWvLe","details":{"message":{"partnerId":"test-partner-id","masterId":"9FFA6B90DB541F98F31901664D20690256C165B29A94E91E3B1288478F9A7FF8","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7443/13357655254_1ab2cbf404_o.jpg"}}}},"contextId":"LyY7bq2Mwq_C8jdkAOdVZfqU"}}
+frontend_1 | 2018-01-31T12:01:38.570499273Z {"@timestamp":"2018-01-31T12:01:38.569+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"MAJZXR7Ovai5CHaUNKzs-XKv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"ns25o5IW3T0HhTndyhRhgyzy"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"MAJZXR7Ovai5CHaUNKzs-XKv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"ns25o5IW3T0HhTndyhRhgyzy"}}},"contextId":"PgoCBPIvx9kfxc79b28lGxFn"}}
+frontend_1 | 2018-01-31T12:01:38.572098170Z {"@timestamp":"2018-01-31T12:01:38.571+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"EmAO815oUZJoaRw4rcQK2dZ-","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"EmAO815oUZJoaRw4rcQK2dZ-","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"PgoCBPIvx9kfxc79b28lGxFn"}}
+frontend_1 | 2018-01-31T12:01:38.573786463Z {"@timestamp":"2018-01-31T12:01:38.573+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"EmAO815oUZJoaRw4rcQK2dZ-","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"EmAO815oUZJoaRw4rcQK2dZ-","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"PgoCBPIvx9kfxc79b28lGxFn"}}
+frontend_1 | 2018-01-31T12:01:38.575736852Z {"@timestamp":"2018-01-31T12:01:38.574+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"MAJZXR7Ovai5CHaUNKzs-XKv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"ns25o5IW3T0HhTndyhRhgyzy"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"MAJZXR7Ovai5CHaUNKzs-XKv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"ns25o5IW3T0HhTndyhRhgyzy"}}},"contextId":"PgoCBPIvx9kfxc79b28lGxFn"}}
+frontend_1 | 2018-01-31T12:01:38.585729533Z {"@timestamp":"2018-01-31T12:01:38.584+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"FAour4fRbpk-pyWWdCa4_Zmb","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8458/7982625521_7b81562fc1_o.jpg"}}},{"name":"IngestionRouting","id":"EmAO815oUZJoaRw4rcQK2dZ-","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"FAour4fRbpk-pyWWdCa4_Zmb","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8458/7982625521_7b81562fc1_o.jpg"}}}},"contextId":"PgoCBPIvx9kfxc79b28lGxFn"}}
+frontend_1 | 2018-01-31T12:01:38.586667520Z {"@timestamp":"2018-01-31T12:01:38.586+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"FAour4fRbpk-pyWWdCa4_Zmb","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8458/7982625521_7b81562fc1_o.jpg"}}},{"name":"IngestionRouting","id":"EmAO815oUZJoaRw4rcQK2dZ-","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"FAour4fRbpk-pyWWdCa4_Zmb","details":{"request":{"client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8458/7982625521_7b81562fc1_o.jpg"}}}},"contextId":"PgoCBPIvx9kfxc79b28lGxFn"}}
+frontend_1 | 2018-01-31T12:01:38.587533678Z {"@timestamp":"2018-01-31T12:01:38.587+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"tog0JOVcpU4NIf0IA-sBn-dY","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"C0A4BC79D594F49CBF66855915C43F73C422F3CCD34A6F632AE135CDCF02AB8F","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8458/7982625521_7b81562fc1_o.jpg"}}},{"name":"IngestionRouting","id":"EmAO815oUZJoaRw4rcQK2dZ-","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"tog0JOVcpU4NIf0IA-sBn-dY","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"C0A4BC79D594F49CBF66855915C43F73C422F3CCD34A6F632AE135CDCF02AB8F","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8458/7982625521_7b81562fc1_o.jpg"}}}},"contextId":"PgoCBPIvx9kfxc79b28lGxFn"}}
+frontend_1 | 2018-01-31T12:01:38.588169820Z {"@timestamp":"2018-01-31T12:01:38.587+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"tog0JOVcpU4NIf0IA-sBn-dY","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"C0A4BC79D594F49CBF66855915C43F73C422F3CCD34A6F632AE135CDCF02AB8F","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8458/7982625521_7b81562fc1_o.jpg"}}},{"name":"IngestionRouting","id":"EmAO815oUZJoaRw4rcQK2dZ-","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"tog0JOVcpU4NIf0IA-sBn-dY","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"C0A4BC79D594F49CBF66855915C43F73C422F3CCD34A6F632AE135CDCF02AB8F","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8458/7982625521_7b81562fc1_o.jpg"}}}},"contextId":"PgoCBPIvx9kfxc79b28lGxFn"}}
+frontend_1 | 2018-01-31T12:01:38.649659520Z {"@timestamp":"2018-01-31T12:01:38.649+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"ooReUEfhYbnGV_JnxmjCX4GH","details":{"message":{"partnerId":"test-partner-id","masterId":"B7F0B1B8769BF15099F6361A8B31B99E2724B3A0DE80EEBDDADBD8AD1986FC73","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/1/427/19029049804_c7f32f63ca_o.jpg"}}},{"name":"IngestionRouting","id":"Tma8HT1clM0a91TkXwapQgfO","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(d869d4dd-d8d1-c7b5-6f28-8160193a058e)"},"contextId":"dWFATwJT7fGVZyb57f5zqI5c"}}
+frontend_1 | 2018-01-31T12:01:38.679278711Z {"@timestamp":"2018-01-31T12:01:38.678+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"ltmsi6zgk5T0ziaAWbibFDWd","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"3E220EBA2764363F4FEFEC529935835EF846F6D68757C07470B805CAEE4AA126","client":"test","metadata":{},"reference":"https://c7.staticflickr.com/9/8672/16533947010_c00cb6fca6_o.jpg"}}},{"name":"IngestionRouting","id":"kE5g9WP9CfFzoJqfRKSvekTM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(9adb2cbb-e662-befe-f72f-07d217c6851e)"},"contextId":"poyadjbt9W3P6WHgr8mzv61o"}}
+frontend_1 | 2018-01-31T12:01:38.681023674Z {"@timestamp":"2018-01-31T12:01:38.680+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"c-i6kwzhLhOvM8f85SpVWvLe","details":{"message":{"partnerId":"test-partner-id","masterId":"9FFA6B90DB541F98F31901664D20690256C165B29A94E91E3B1288478F9A7FF8","client":"test","metadata":{},"reference":"https://c6.staticflickr.com/8/7443/13357655254_1ab2cbf404_o.jpg"}}},{"name":"IngestionRouting","id":"NJazx6wC01aBYC38QlgJIm0X","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(d13df200-042d-a6d3-6d8e-843e4036eb73)"},"contextId":"LyY7bq2Mwq_C8jdkAOdVZfqU"}}
+frontend_1 | 2018-01-31T12:01:38.709678294Z {"@timestamp":"2018-01-31T12:01:38.709+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"aW2lT2O42dCkcOfiRpfndozH","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"C8CB557B9EED6F6B02F10CC2FC4779460DD351E68FBD15B960F774D80242C791","client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/238/459709286_3fa79412c8_o.jpg"}}},{"name":"IngestionRouting","id":"vJoXBqOb4TRnu3MMxH6tJvIM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(2ffa5eae-6d8c-11cf-47a4-1d4d1535fb6a)"},"contextId":"pvN3icex3GbmJmF25dCc12n9"}}
+frontend_1 | 2018-01-31T12:01:38.716483016Z {"@timestamp":"2018-01-31T12:01:38.715+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"kP0py5kjyfdpn5eOQGmRbUqU","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"YoylC9DsS2URX5XAnl-s3ndY"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"kP0py5kjyfdpn5eOQGmRbUqU","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"YoylC9DsS2URX5XAnl-s3ndY"}}},"contextId":"v8cmg4muBj-gc22PMDId938D"}}
+frontend_1 | 2018-01-31T12:01:38.717547843Z {"@timestamp":"2018-01-31T12:01:38.716+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"5wUib54at6f6RuES_tO0bneF","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"5wUib54at6f6RuES_tO0bneF","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"v8cmg4muBj-gc22PMDId938D"}}
+frontend_1 | 2018-01-31T12:01:38.718014801Z {"@timestamp":"2018-01-31T12:01:38.717+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"5wUib54at6f6RuES_tO0bneF","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"5wUib54at6f6RuES_tO0bneF","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"v8cmg4muBj-gc22PMDId938D"}}
+frontend_1 | 2018-01-31T12:01:38.718526266Z {"@timestamp":"2018-01-31T12:01:38.718+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"kP0py5kjyfdpn5eOQGmRbUqU","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"YoylC9DsS2URX5XAnl-s3ndY"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"kP0py5kjyfdpn5eOQGmRbUqU","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"YoylC9DsS2URX5XAnl-s3ndY"}}},"contextId":"v8cmg4muBj-gc22PMDId938D"}}
+frontend_1 | 2018-01-31T12:01:38.737295501Z {"@timestamp":"2018-01-31T12:01:38.736+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"AV6SmvGFJgN7tsLd_bzTdpKv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"Ja4UISSiwy8L4Bj0h7--w8Zq"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"AV6SmvGFJgN7tsLd_bzTdpKv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"Ja4UISSiwy8L4Bj0h7--w8Zq"}}},"contextId":"vd_lrlopuUhRzUGlwW9vh_xc"}}
+frontend_1 | 2018-01-31T12:01:38.738350935Z {"@timestamp":"2018-01-31T12:01:38.737+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"xSfQHbg_1WEeNfCBtsiVof6I","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"xSfQHbg_1WEeNfCBtsiVof6I","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"vd_lrlopuUhRzUGlwW9vh_xc"}}
+frontend_1 | 2018-01-31T12:01:38.739040713Z {"@timestamp":"2018-01-31T12:01:38.738+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"xSfQHbg_1WEeNfCBtsiVof6I","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"xSfQHbg_1WEeNfCBtsiVof6I","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"vd_lrlopuUhRzUGlwW9vh_xc"}}
+frontend_1 | 2018-01-31T12:01:38.739487833Z {"@timestamp":"2018-01-31T12:01:38.739+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"AV6SmvGFJgN7tsLd_bzTdpKv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"Ja4UISSiwy8L4Bj0h7--w8Zq"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"AV6SmvGFJgN7tsLd_bzTdpKv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"Ja4UISSiwy8L4Bj0h7--w8Zq"}}},"contextId":"vd_lrlopuUhRzUGlwW9vh_xc"}}
+frontend_1 | 2018-01-31T12:01:38.745038434Z {"@timestamp":"2018-01-31T12:01:38.744+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"bDq70tHgUys1mBxk-FgY6hn-","details":{}},{"name":"IngestionRouting","id":"5wUib54at6f6RuES_tO0bneF","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"bDq70tHgUys1mBxk-FgY6hn-","details":{}}},"contextId":"v8cmg4muBj-gc22PMDId938D"}}
+frontend_1 | 2018-01-31T12:01:38.745573181Z {"@timestamp":"2018-01-31T12:01:38.745+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"bDq70tHgUys1mBxk-FgY6hn-","details":{}},{"name":"IngestionRouting","id":"5wUib54at6f6RuES_tO0bneF","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"bDq70tHgUys1mBxk-FgY6hn-","details":{}}},"contextId":"v8cmg4muBj-gc22PMDId938D"}}
+frontend_1 | 2018-01-31T12:01:38.746449306Z {"@timestamp":"2018-01-31T12:01:38.745+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"bDq70tHgUys1mBxk-FgY6hn-","details":{}},{"name":"IngestionRouting","id":"5wUib54at6f6RuES_tO0bneF","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"v8cmg4muBj-gc22PMDId938D"}}
+frontend_1 | 2018-01-31T12:01:38.755593328Z {"@timestamp":"2018-01-31T12:01:38.754+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"zfT_IC-2YIDRszJOB_Cx-Wrq","details":{}},{"name":"IngestionRouting","id":"xSfQHbg_1WEeNfCBtsiVof6I","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"zfT_IC-2YIDRszJOB_Cx-Wrq","details":{}}},"contextId":"vd_lrlopuUhRzUGlwW9vh_xc"}}
+frontend_1 | 2018-01-31T12:01:38.757544912Z {"@timestamp":"2018-01-31T12:01:38.756+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"zfT_IC-2YIDRszJOB_Cx-Wrq","details":{}},{"name":"IngestionRouting","id":"xSfQHbg_1WEeNfCBtsiVof6I","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"zfT_IC-2YIDRszJOB_Cx-Wrq","details":{}}},"contextId":"vd_lrlopuUhRzUGlwW9vh_xc"}}
+frontend_1 | 2018-01-31T12:01:38.761381691Z {"@timestamp":"2018-01-31T12:01:38.760+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"zfT_IC-2YIDRszJOB_Cx-Wrq","details":{}},{"name":"IngestionRouting","id":"xSfQHbg_1WEeNfCBtsiVof6I","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"vd_lrlopuUhRzUGlwW9vh_xc"}}
+frontend_1 | 2018-01-31T12:01:38.830190257Z {"@timestamp":"2018-01-31T12:01:38.829+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"tog0JOVcpU4NIf0IA-sBn-dY","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"C0A4BC79D594F49CBF66855915C43F73C422F3CCD34A6F632AE135CDCF02AB8F","client":"test","metadata":{},"reference":"https://farm2.staticflickr.com/8458/7982625521_7b81562fc1_o.jpg"}}},{"name":"IngestionRouting","id":"EmAO815oUZJoaRw4rcQK2dZ-","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(71da06cd-7239-ec93-2e72-6f92fcde7f74)"},"contextId":"PgoCBPIvx9kfxc79b28lGxFn"}}
+frontend_1 | 2018-01-31T12:01:38.830535376Z {"@timestamp":"2018-01-31T12:01:38.829+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"1FNzzZ6rIUA2iDmAsrsDECKW","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"XAbdVo0GB5v9vZWrnx2R9Dzp"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"1FNzzZ6rIUA2iDmAsrsDECKW","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"XAbdVo0GB5v9vZWrnx2R9Dzp"}}},"contextId":"0ZY552SAUt-DLECFgLuFbFWg"}}
+frontend_1 | 2018-01-31T12:01:38.835013086Z {"@timestamp":"2018-01-31T12:01:38.834+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"lzDWVwJKuXYB7P7oBRbldvWT","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"lzDWVwJKuXYB7P7oBRbldvWT","details":{"partnerId":"test-partner-id"}}},"contextId":"0ZY552SAUt-DLECFgLuFbFWg"}}
+frontend_1 | 2018-01-31T12:01:38.838604582Z {"@timestamp":"2018-01-31T12:01:38.835+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"lzDWVwJKuXYB7P7oBRbldvWT","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"lzDWVwJKuXYB7P7oBRbldvWT","details":{"partnerId":"test-partner-id"}}},"contextId":"0ZY552SAUt-DLECFgLuFbFWg"}}
+frontend_1 | 2018-01-31T12:01:38.839146254Z {"@timestamp":"2018-01-31T12:01:38.838+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"1FNzzZ6rIUA2iDmAsrsDECKW","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"XAbdVo0GB5v9vZWrnx2R9Dzp"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"1FNzzZ6rIUA2iDmAsrsDECKW","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"XAbdVo0GB5v9vZWrnx2R9Dzp"}}},"contextId":"0ZY552SAUt-DLECFgLuFbFWg"}}
+frontend_1 | 2018-01-31T12:01:38.856630676Z {"@timestamp":"2018-01-31T12:01:38.855+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"kzyPUhdxAoDEtuluvDfZVSpz","details":{}},{"name":"IngestionRouting","id":"lzDWVwJKuXYB7P7oBRbldvWT","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"kzyPUhdxAoDEtuluvDfZVSpz","details":{}}},"contextId":"0ZY552SAUt-DLECFgLuFbFWg"}}
+frontend_1 | 2018-01-31T12:01:38.856932446Z {"@timestamp":"2018-01-31T12:01:38.856+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"kzyPUhdxAoDEtuluvDfZVSpz","details":{}},{"name":"IngestionRouting","id":"lzDWVwJKuXYB7P7oBRbldvWT","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"kzyPUhdxAoDEtuluvDfZVSpz","details":{}}},"contextId":"0ZY552SAUt-DLECFgLuFbFWg"}}
+frontend_1 | 2018-01-31T12:01:38.858653890Z {"@timestamp":"2018-01-31T12:01:38.857+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"kzyPUhdxAoDEtuluvDfZVSpz","details":{}},{"name":"IngestionRouting","id":"lzDWVwJKuXYB7P7oBRbldvWT","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"0ZY552SAUt-DLECFgLuFbFWg"}}
+frontend_1 | 2018-01-31T12:01:38.939867668Z {"@timestamp":"2018-01-31T12:01:38.938+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"JqCqJEQJ65zVAWFxchb26fG7","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"sTyLiMLU54NCwQIaIkhb0bf9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"JqCqJEQJ65zVAWFxchb26fG7","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"sTyLiMLU54NCwQIaIkhb0bf9"}}},"contextId":"LaB5sKoxjXKWR-ALZYMczbP0"}}
+frontend_1 | 2018-01-31T12:01:38.940582572Z {"@timestamp":"2018-01-31T12:01:38.940+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"431RARdc-sjIZDMpReCamc7B","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"431RARdc-sjIZDMpReCamc7B","details":{"partnerId":"test-partner-id"}}},"contextId":"LaB5sKoxjXKWR-ALZYMczbP0"}}
+frontend_1 | 2018-01-31T12:01:38.941041147Z {"@timestamp":"2018-01-31T12:01:38.940+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"431RARdc-sjIZDMpReCamc7B","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"431RARdc-sjIZDMpReCamc7B","details":{"partnerId":"test-partner-id"}}},"contextId":"LaB5sKoxjXKWR-ALZYMczbP0"}}
+frontend_1 | 2018-01-31T12:01:38.941462703Z {"@timestamp":"2018-01-31T12:01:38.941+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"JqCqJEQJ65zVAWFxchb26fG7","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"sTyLiMLU54NCwQIaIkhb0bf9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"JqCqJEQJ65zVAWFxchb26fG7","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"sTyLiMLU54NCwQIaIkhb0bf9"}}},"contextId":"LaB5sKoxjXKWR-ALZYMczbP0"}}
+frontend_1 | 2018-01-31T12:01:38.949506228Z {"@timestamp":"2018-01-31T12:01:38.948+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"Ns5cOunJ1aRPri-G5H88hwl5","details":{}},{"name":"IngestionRouting","id":"431RARdc-sjIZDMpReCamc7B","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"Ns5cOunJ1aRPri-G5H88hwl5","details":{}}},"contextId":"LaB5sKoxjXKWR-ALZYMczbP0"}}
+frontend_1 | 2018-01-31T12:01:38.949562659Z {"@timestamp":"2018-01-31T12:01:38.948+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"Ns5cOunJ1aRPri-G5H88hwl5","details":{}},{"name":"IngestionRouting","id":"431RARdc-sjIZDMpReCamc7B","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"Ns5cOunJ1aRPri-G5H88hwl5","details":{}}},"contextId":"LaB5sKoxjXKWR-ALZYMczbP0"}}
+frontend_1 | 2018-01-31T12:01:38.950075137Z {"@timestamp":"2018-01-31T12:01:38.949+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"Ns5cOunJ1aRPri-G5H88hwl5","details":{}},{"name":"IngestionRouting","id":"431RARdc-sjIZDMpReCamc7B","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"LaB5sKoxjXKWR-ALZYMczbP0"}}
+frontend_1 | 2018-01-31T12:01:38.996340161Z {"@timestamp":"2018-01-31T12:01:38.995+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"oYFbkWyLHL7jHIQXb0rNo9FJ","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"AdS7OQCoMUd6QOOxuSpSgqLq"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"oYFbkWyLHL7jHIQXb0rNo9FJ","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"AdS7OQCoMUd6QOOxuSpSgqLq"}}},"contextId":"cnGy29Tz-5JwUcMlyoBxypL0"}}
+frontend_1 | 2018-01-31T12:01:39.006546489Z {"@timestamp":"2018-01-31T12:01:38.996+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"krqDZyIIgir6H4bjOhyKbY3G","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"krqDZyIIgir6H4bjOhyKbY3G","details":{"partnerId":"test-partner-id"}}},"contextId":"cnGy29Tz-5JwUcMlyoBxypL0"}}
+frontend_1 | 2018-01-31T12:01:39.007179300Z {"@timestamp":"2018-01-31T12:01:39.006+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"krqDZyIIgir6H4bjOhyKbY3G","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"krqDZyIIgir6H4bjOhyKbY3G","details":{"partnerId":"test-partner-id"}}},"contextId":"cnGy29Tz-5JwUcMlyoBxypL0"}}
+frontend_1 | 2018-01-31T12:01:39.009443638Z {"@timestamp":"2018-01-31T12:01:39.008+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"oYFbkWyLHL7jHIQXb0rNo9FJ","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"AdS7OQCoMUd6QOOxuSpSgqLq"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"oYFbkWyLHL7jHIQXb0rNo9FJ","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"AdS7OQCoMUd6QOOxuSpSgqLq"}}},"contextId":"cnGy29Tz-5JwUcMlyoBxypL0"}}
+frontend_1 | 2018-01-31T12:01:39.028036163Z {"@timestamp":"2018-01-31T12:01:39.027+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"JavFAAnTc0y4OiQ6RSN3_1Wh","details":{}},{"name":"IngestionRouting","id":"krqDZyIIgir6H4bjOhyKbY3G","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"JavFAAnTc0y4OiQ6RSN3_1Wh","details":{}}},"contextId":"cnGy29Tz-5JwUcMlyoBxypL0"}}
+frontend_1 | 2018-01-31T12:01:39.028565708Z {"@timestamp":"2018-01-31T12:01:39.028+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"JavFAAnTc0y4OiQ6RSN3_1Wh","details":{}},{"name":"IngestionRouting","id":"krqDZyIIgir6H4bjOhyKbY3G","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"JavFAAnTc0y4OiQ6RSN3_1Wh","details":{}}},"contextId":"cnGy29Tz-5JwUcMlyoBxypL0"}}
+frontend_1 | 2018-01-31T12:01:39.029398196Z {"@timestamp":"2018-01-31T12:01:39.029+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"JavFAAnTc0y4OiQ6RSN3_1Wh","details":{}},{"name":"IngestionRouting","id":"krqDZyIIgir6H4bjOhyKbY3G","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"cnGy29Tz-5JwUcMlyoBxypL0"}}
+frontend_1 | 2018-01-31T12:01:39.152813957Z {"@timestamp":"2018-01-31T12:01:39.152+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"zfT_IC-2YIDRszJOB_Cx-Wrq","details":{}},{"name":"IngestionRouting","id":"xSfQHbg_1WEeNfCBtsiVof6I","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"vd_lrlopuUhRzUGlwW9vh_xc"}}
+frontend_1 | 2018-01-31T12:01:39.154790595Z {"@timestamp":"2018-01-31T12:01:39.154+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:39.259057062Z {"@timestamp":"2018-01-31T12:01:39.258+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"Ns5cOunJ1aRPri-G5H88hwl5","details":{}},{"name":"IngestionRouting","id":"431RARdc-sjIZDMpReCamc7B","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"LaB5sKoxjXKWR-ALZYMczbP0"}}
+frontend_1 | 2018-01-31T12:01:39.260697691Z {"@timestamp":"2018-01-31T12:01:39.260+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:39.370322024Z {"@timestamp":"2018-01-31T12:01:39.369+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"kzyPUhdxAoDEtuluvDfZVSpz","details":{}},{"name":"IngestionRouting","id":"lzDWVwJKuXYB7P7oBRbldvWT","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"0ZY552SAUt-DLECFgLuFbFWg"}}
+frontend_1 | 2018-01-31T12:01:39.372475797Z {"@timestamp":"2018-01-31T12:01:39.371+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:39.459575416Z {"@timestamp":"2018-01-31T12:01:39.458+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"JavFAAnTc0y4OiQ6RSN3_1Wh","details":{}},{"name":"IngestionRouting","id":"krqDZyIIgir6H4bjOhyKbY3G","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"cnGy29Tz-5JwUcMlyoBxypL0"}}
+frontend_1 | 2018-01-31T12:01:39.461159356Z {"@timestamp":"2018-01-31T12:01:39.460+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:39.511599893Z {"@timestamp":"2018-01-31T12:01:39.510+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"bDq70tHgUys1mBxk-FgY6hn-","details":{}},{"name":"IngestionRouting","id":"5wUib54at6f6RuES_tO0bneF","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"v8cmg4muBj-gc22PMDId938D"}}
+frontend_1 | 2018-01-31T12:01:39.514035067Z {"@timestamp":"2018-01-31T12:01:39.513+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:39.951283051Z {"@timestamp":"2018-01-31T12:01:39.949+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"OOlkRjDgp_eAkdNI5EvBn_rD","details":{"endpoint":"GET /health","transactionId":"QipCcnujnPYiyPT1Omj4Ogvz"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"OOlkRjDgp_eAkdNI5EvBn_rD","details":{"endpoint":"GET /health","transactionId":"QipCcnujnPYiyPT1Omj4Ogvz"}}},"contextId":"LOIg40u-jqd_VJjA6jRUdtuz"}}
+frontend_1 | 2018-01-31T12:01:39.951632131Z {"@timestamp":"2018-01-31T12:01:39.951+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"OOlkRjDgp_eAkdNI5EvBn_rD","details":{"endpoint":"GET /health","transactionId":"QipCcnujnPYiyPT1Omj4Ogvz"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"OOlkRjDgp_eAkdNI5EvBn_rD","details":{"endpoint":"GET /health","transactionId":"QipCcnujnPYiyPT1Omj4Ogvz"}}},"contextId":"LOIg40u-jqd_VJjA6jRUdtuz"}}
+frontend_1 | 2018-01-31T12:01:40.096055012Z {"@timestamp":"2018-01-31T12:01:40.095+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"zhrLqSbsPMFP52O5zjGtSykv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"XyaCBSP8yrFvdzIc3ZfootFe"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"zhrLqSbsPMFP52O5zjGtSykv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"XyaCBSP8yrFvdzIc3ZfootFe"}}},"contextId":"8WPSp2_jjsEfQIRlQQEfn89u"}}
+frontend_1 | 2018-01-31T12:01:40.096423075Z {"@timestamp":"2018-01-31T12:01:40.096+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"uhNEtP3DAdBcmKwJIBsmbNnj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"uhNEtP3DAdBcmKwJIBsmbNnj","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"8WPSp2_jjsEfQIRlQQEfn89u"}}
+frontend_1 | 2018-01-31T12:01:40.096770656Z {"@timestamp":"2018-01-31T12:01:40.096+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"uhNEtP3DAdBcmKwJIBsmbNnj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"uhNEtP3DAdBcmKwJIBsmbNnj","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"8WPSp2_jjsEfQIRlQQEfn89u"}}
+frontend_1 | 2018-01-31T12:01:40.097072277Z {"@timestamp":"2018-01-31T12:01:40.096+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"zhrLqSbsPMFP52O5zjGtSykv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"XyaCBSP8yrFvdzIc3ZfootFe"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"zhrLqSbsPMFP52O5zjGtSykv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"XyaCBSP8yrFvdzIc3ZfootFe"}}},"contextId":"8WPSp2_jjsEfQIRlQQEfn89u"}}
+frontend_1 | 2018-01-31T12:01:40.098694441Z {"@timestamp":"2018-01-31T12:01:40.098+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"LTRsa5hVowKWFIdEiOQapj-U","details":{"request":{"client":"test","metadata":{},"reference":"https://farm7.staticflickr.com/3089/2645783391_983d02c9b3_o.jpg"}}},{"name":"IngestionRouting","id":"uhNEtP3DAdBcmKwJIBsmbNnj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"LTRsa5hVowKWFIdEiOQapj-U","details":{"request":{"client":"test","metadata":{},"reference":"https://farm7.staticflickr.com/3089/2645783391_983d02c9b3_o.jpg"}}}},"contextId":"8WPSp2_jjsEfQIRlQQEfn89u"}}
+frontend_1 | 2018-01-31T12:01:40.099548834Z {"@timestamp":"2018-01-31T12:01:40.099+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"LTRsa5hVowKWFIdEiOQapj-U","details":{"request":{"client":"test","metadata":{},"reference":"https://farm7.staticflickr.com/3089/2645783391_983d02c9b3_o.jpg"}}},{"name":"IngestionRouting","id":"uhNEtP3DAdBcmKwJIBsmbNnj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"LTRsa5hVowKWFIdEiOQapj-U","details":{"request":{"client":"test","metadata":{},"reference":"https://farm7.staticflickr.com/3089/2645783391_983d02c9b3_o.jpg"}}}},"contextId":"8WPSp2_jjsEfQIRlQQEfn89u"}}
+frontend_1 | 2018-01-31T12:01:40.100095932Z {"@timestamp":"2018-01-31T12:01:40.099+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"wPFv3ifXaour5KRhJ1DmfCvu","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"E8EC83DC05346B67F45A7249622A5CE5BEFD7ABCC3704DED99CB805169CDC499","client":"test","metadata":{},"reference":"https://farm7.staticflickr.com/3089/2645783391_983d02c9b3_o.jpg"}}},{"name":"IngestionRouting","id":"uhNEtP3DAdBcmKwJIBsmbNnj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"wPFv3ifXaour5KRhJ1DmfCvu","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"E8EC83DC05346B67F45A7249622A5CE5BEFD7ABCC3704DED99CB805169CDC499","client":"test","metadata":{},"reference":"https://farm7.staticflickr.com/3089/2645783391_983d02c9b3_o.jpg"}}}},"contextId":"8WPSp2_jjsEfQIRlQQEfn89u"}}
+frontend_1 | 2018-01-31T12:01:40.100855338Z {"@timestamp":"2018-01-31T12:01:40.100+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"wPFv3ifXaour5KRhJ1DmfCvu","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"E8EC83DC05346B67F45A7249622A5CE5BEFD7ABCC3704DED99CB805169CDC499","client":"test","metadata":{},"reference":"https://farm7.staticflickr.com/3089/2645783391_983d02c9b3_o.jpg"}}},{"name":"IngestionRouting","id":"uhNEtP3DAdBcmKwJIBsmbNnj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"wPFv3ifXaour5KRhJ1DmfCvu","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"E8EC83DC05346B67F45A7249622A5CE5BEFD7ABCC3704DED99CB805169CDC499","client":"test","metadata":{},"reference":"https://farm7.staticflickr.com/3089/2645783391_983d02c9b3_o.jpg"}}}},"contextId":"8WPSp2_jjsEfQIRlQQEfn89u"}}
+frontend_1 | 2018-01-31T12:01:40.179536210Z {"@timestamp":"2018-01-31T12:01:40.179+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"wPFv3ifXaour5KRhJ1DmfCvu","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"E8EC83DC05346B67F45A7249622A5CE5BEFD7ABCC3704DED99CB805169CDC499","client":"test","metadata":{},"reference":"https://farm7.staticflickr.com/3089/2645783391_983d02c9b3_o.jpg"}}},{"name":"IngestionRouting","id":"uhNEtP3DAdBcmKwJIBsmbNnj","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(acf0f5a3-5436-8402-42ac-bfcf4082b728)"},"contextId":"8WPSp2_jjsEfQIRlQQEfn89u"}}
+frontend_1 | 2018-01-31T12:01:40.347631264Z {"@timestamp":"2018-01-31T12:01:40.346+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"rYGw3zZjNtdgZLzwnb1vdpHN","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"Dz5pIHeAs5sE61-JiRPP0e8L"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"rYGw3zZjNtdgZLzwnb1vdpHN","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"Dz5pIHeAs5sE61-JiRPP0e8L"}}},"contextId":"GtF6Q0p9UndSwpMVUFJIv_xE"}}
+frontend_1 | 2018-01-31T12:01:40.349129843Z {"@timestamp":"2018-01-31T12:01:40.348+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"J-bl_LzETOCWMjZliMESZoXM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"J-bl_LzETOCWMjZliMESZoXM","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"GtF6Q0p9UndSwpMVUFJIv_xE"}}
+frontend_1 | 2018-01-31T12:01:40.349927436Z {"@timestamp":"2018-01-31T12:01:40.349+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"J-bl_LzETOCWMjZliMESZoXM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"J-bl_LzETOCWMjZliMESZoXM","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"GtF6Q0p9UndSwpMVUFJIv_xE"}}
+frontend_1 | 2018-01-31T12:01:40.350554534Z {"@timestamp":"2018-01-31T12:01:40.350+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"rYGw3zZjNtdgZLzwnb1vdpHN","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"Dz5pIHeAs5sE61-JiRPP0e8L"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"rYGw3zZjNtdgZLzwnb1vdpHN","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"Dz5pIHeAs5sE61-JiRPP0e8L"}}},"contextId":"GtF6Q0p9UndSwpMVUFJIv_xE"}}
+frontend_1 | 2018-01-31T12:01:40.382101026Z {"@timestamp":"2018-01-31T12:01:40.381+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"_ebPkn0XkNlzMLj0T4E0TTpy","details":{}},{"name":"IngestionRouting","id":"J-bl_LzETOCWMjZliMESZoXM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"_ebPkn0XkNlzMLj0T4E0TTpy","details":{}}},"contextId":"GtF6Q0p9UndSwpMVUFJIv_xE"}}
+frontend_1 | 2018-01-31T12:01:40.382746347Z {"@timestamp":"2018-01-31T12:01:40.382+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"_ebPkn0XkNlzMLj0T4E0TTpy","details":{}},{"name":"IngestionRouting","id":"J-bl_LzETOCWMjZliMESZoXM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"_ebPkn0XkNlzMLj0T4E0TTpy","details":{}}},"contextId":"GtF6Q0p9UndSwpMVUFJIv_xE"}}
+frontend_1 | 2018-01-31T12:01:40.386595535Z {"@timestamp":"2018-01-31T12:01:40.385+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"_ebPkn0XkNlzMLj0T4E0TTpy","details":{}},{"name":"IngestionRouting","id":"J-bl_LzETOCWMjZliMESZoXM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"GtF6Q0p9UndSwpMVUFJIv_xE"}}
+frontend_1 | 2018-01-31T12:01:40.862011364Z {"@timestamp":"2018-01-31T12:01:40.861+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"_ebPkn0XkNlzMLj0T4E0TTpy","details":{}},{"name":"IngestionRouting","id":"J-bl_LzETOCWMjZliMESZoXM","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"GtF6Q0p9UndSwpMVUFJIv_xE"}}
+frontend_1 | 2018-01-31T12:01:40.864013553Z {"@timestamp":"2018-01-31T12:01:40.863+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:41.116273935Z {"@timestamp":"2018-01-31T12:01:41.115+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"Z0vJQidkOJ3XNc99U-9dDs_A","details":{"endpoint":"GET /health","transactionId":"MPDLty_SfIeC5IJatVELm-mp"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"Z0vJQidkOJ3XNc99U-9dDs_A","details":{"endpoint":"GET /health","transactionId":"MPDLty_SfIeC5IJatVELm-mp"}}},"contextId":"Wf_k5zvagz9lJtjr6eWdHOeH"}}
+frontend_1 | 2018-01-31T12:01:41.116855961Z {"@timestamp":"2018-01-31T12:01:41.116+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"Z0vJQidkOJ3XNc99U-9dDs_A","details":{"endpoint":"GET /health","transactionId":"MPDLty_SfIeC5IJatVELm-mp"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"Z0vJQidkOJ3XNc99U-9dDs_A","details":{"endpoint":"GET /health","transactionId":"MPDLty_SfIeC5IJatVELm-mp"}}},"contextId":"Wf_k5zvagz9lJtjr6eWdHOeH"}}
+frontend_1 | 2018-01-31T12:01:41.294696267Z {"@timestamp":"2018-01-31T12:01:41.294+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"l63KQIh7sstXFaxblouR7L2l","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"NiNaxpTTf1TcZiHL2v4-vuew"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"l63KQIh7sstXFaxblouR7L2l","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"NiNaxpTTf1TcZiHL2v4-vuew"}}},"contextId":"UbmKz7sqTIdq6FXlmApcpb_6"}}
+frontend_1 | 2018-01-31T12:01:41.296752082Z {"@timestamp":"2018-01-31T12:01:41.296+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"LvnY4KMwwqaVUGGJ_WKbW-Ko","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"LvnY4KMwwqaVUGGJ_WKbW-Ko","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"UbmKz7sqTIdq6FXlmApcpb_6"}}
+frontend_1 | 2018-01-31T12:01:41.297086732Z {"@timestamp":"2018-01-31T12:01:41.296+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"LvnY4KMwwqaVUGGJ_WKbW-Ko","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"LvnY4KMwwqaVUGGJ_WKbW-Ko","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"UbmKz7sqTIdq6FXlmApcpb_6"}}
+frontend_1 | 2018-01-31T12:01:41.297482651Z {"@timestamp":"2018-01-31T12:01:41.297+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"l63KQIh7sstXFaxblouR7L2l","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"NiNaxpTTf1TcZiHL2v4-vuew"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"l63KQIh7sstXFaxblouR7L2l","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"NiNaxpTTf1TcZiHL2v4-vuew"}}},"contextId":"UbmKz7sqTIdq6FXlmApcpb_6"}}
+frontend_1 | 2018-01-31T12:01:41.310437811Z {"@timestamp":"2018-01-31T12:01:41.310+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"0Jr-nDfLmrOmBlL0jVCGeyBv","details":{}},{"name":"IngestionRouting","id":"LvnY4KMwwqaVUGGJ_WKbW-Ko","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"0Jr-nDfLmrOmBlL0jVCGeyBv","details":{}}},"contextId":"UbmKz7sqTIdq6FXlmApcpb_6"}}
+frontend_1 | 2018-01-31T12:01:41.310728538Z {"@timestamp":"2018-01-31T12:01:41.310+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"0Jr-nDfLmrOmBlL0jVCGeyBv","details":{}},{"name":"IngestionRouting","id":"LvnY4KMwwqaVUGGJ_WKbW-Ko","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"0Jr-nDfLmrOmBlL0jVCGeyBv","details":{}}},"contextId":"UbmKz7sqTIdq6FXlmApcpb_6"}}
+frontend_1 | 2018-01-31T12:01:41.311614051Z {"@timestamp":"2018-01-31T12:01:41.311+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"0Jr-nDfLmrOmBlL0jVCGeyBv","details":{}},{"name":"IngestionRouting","id":"LvnY4KMwwqaVUGGJ_WKbW-Ko","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"UbmKz7sqTIdq6FXlmApcpb_6"}}
+frontend_1 | 2018-01-31T12:01:41.468456406Z {"@timestamp":"2018-01-31T12:01:41.468+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"0G9K0rMkBTkxcMz01qrsoPpo","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"Eb9BfNZG5TftfQ53vWzSCIB9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"0G9K0rMkBTkxcMz01qrsoPpo","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"Eb9BfNZG5TftfQ53vWzSCIB9"}}},"contextId":"e9irb7hrm3ILXRrTWRuCLRoo"}}
+frontend_1 | 2018-01-31T12:01:41.478682664Z {"@timestamp":"2018-01-31T12:01:41.477+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"nQjew6vZ2504NoLQvtgJ0qMx","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"nQjew6vZ2504NoLQvtgJ0qMx","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"e9irb7hrm3ILXRrTWRuCLRoo"}}
+frontend_1 | 2018-01-31T12:01:41.481358027Z {"@timestamp":"2018-01-31T12:01:41.478+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"nQjew6vZ2504NoLQvtgJ0qMx","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"nQjew6vZ2504NoLQvtgJ0qMx","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"e9irb7hrm3ILXRrTWRuCLRoo"}}
+frontend_1 | 2018-01-31T12:01:41.482071738Z {"@timestamp":"2018-01-31T12:01:41.481+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"0G9K0rMkBTkxcMz01qrsoPpo","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"Eb9BfNZG5TftfQ53vWzSCIB9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"0G9K0rMkBTkxcMz01qrsoPpo","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"Eb9BfNZG5TftfQ53vWzSCIB9"}}},"contextId":"e9irb7hrm3ILXRrTWRuCLRoo"}}
+frontend_1 | 2018-01-31T12:01:41.485518747Z {"@timestamp":"2018-01-31T12:01:41.485+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"0-wG8g4mPWoWu7qR14oU8ydF","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/135/340915989_1d682ecb6d_o.jpg"}}},{"name":"IngestionRouting","id":"nQjew6vZ2504NoLQvtgJ0qMx","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"0-wG8g4mPWoWu7qR14oU8ydF","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/135/340915989_1d682ecb6d_o.jpg"}}}},"contextId":"e9irb7hrm3ILXRrTWRuCLRoo"}}
+frontend_1 | 2018-01-31T12:01:41.486843209Z {"@timestamp":"2018-01-31T12:01:41.486+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"0-wG8g4mPWoWu7qR14oU8ydF","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/135/340915989_1d682ecb6d_o.jpg"}}},{"name":"IngestionRouting","id":"nQjew6vZ2504NoLQvtgJ0qMx","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"0-wG8g4mPWoWu7qR14oU8ydF","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/135/340915989_1d682ecb6d_o.jpg"}}}},"contextId":"e9irb7hrm3ILXRrTWRuCLRoo"}}
+frontend_1 | 2018-01-31T12:01:41.487281825Z {"@timestamp":"2018-01-31T12:01:41.486+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"ZseRRh-NnhOo2OLcr9ymARfy","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"36F6EE9601D14959150976A985D40B1D4E9FA4A772A372244D8D4F5AB95CFB81","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/135/340915989_1d682ecb6d_o.jpg"}}},{"name":"IngestionRouting","id":"nQjew6vZ2504NoLQvtgJ0qMx","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"ZseRRh-NnhOo2OLcr9ymARfy","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"36F6EE9601D14959150976A985D40B1D4E9FA4A772A372244D8D4F5AB95CFB81","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/135/340915989_1d682ecb6d_o.jpg"}}}},"contextId":"e9irb7hrm3ILXRrTWRuCLRoo"}}
+frontend_1 | 2018-01-31T12:01:41.488010129Z {"@timestamp":"2018-01-31T12:01:41.487+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"ZseRRh-NnhOo2OLcr9ymARfy","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"36F6EE9601D14959150976A985D40B1D4E9FA4A772A372244D8D4F5AB95CFB81","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/135/340915989_1d682ecb6d_o.jpg"}}},{"name":"IngestionRouting","id":"nQjew6vZ2504NoLQvtgJ0qMx","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"ZseRRh-NnhOo2OLcr9ymARfy","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"36F6EE9601D14959150976A985D40B1D4E9FA4A772A372244D8D4F5AB95CFB81","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/135/340915989_1d682ecb6d_o.jpg"}}}},"contextId":"e9irb7hrm3ILXRrTWRuCLRoo"}}
+frontend_1 | 2018-01-31T12:01:41.530797761Z {"@timestamp":"2018-01-31T12:01:41.530+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"kcf2Wz3bs-jJ54xWbGq1CUob","details":{"endpoint":"GET /health","transactionId":"SVfqYKSXD0HO-0xNlsupvn93"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"kcf2Wz3bs-jJ54xWbGq1CUob","details":{"endpoint":"GET /health","transactionId":"SVfqYKSXD0HO-0xNlsupvn93"}}},"contextId":"hzAUeKNjwBVvEVNWST_S29A2"}}
+frontend_1 | 2018-01-31T12:01:41.531166025Z {"@timestamp":"2018-01-31T12:01:41.530+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"kcf2Wz3bs-jJ54xWbGq1CUob","details":{"endpoint":"GET /health","transactionId":"SVfqYKSXD0HO-0xNlsupvn93"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"kcf2Wz3bs-jJ54xWbGq1CUob","details":{"endpoint":"GET /health","transactionId":"SVfqYKSXD0HO-0xNlsupvn93"}}},"contextId":"hzAUeKNjwBVvEVNWST_S29A2"}}
+frontend_1 | 2018-01-31T12:01:41.570107100Z {"@timestamp":"2018-01-31T12:01:41.569+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"ZseRRh-NnhOo2OLcr9ymARfy","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"36F6EE9601D14959150976A985D40B1D4E9FA4A772A372244D8D4F5AB95CFB81","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/135/340915989_1d682ecb6d_o.jpg"}}},{"name":"IngestionRouting","id":"nQjew6vZ2504NoLQvtgJ0qMx","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(28686022-e765-ebc4-fc13-ae09ae6fbd3e)"},"contextId":"e9irb7hrm3ILXRrTWRuCLRoo"}}
+frontend_1 | 2018-01-31T12:01:41.590490779Z {"@timestamp":"2018-01-31T12:01:41.590+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"YwRDp3bl91xlxx1SA5F3DUjm","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"H5lDCMf66dllSkjYNpReaIO3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"YwRDp3bl91xlxx1SA5F3DUjm","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"H5lDCMf66dllSkjYNpReaIO3"}}},"contextId":"K6bKCG3vOIpoCE-RvN7MweW4"}}
+frontend_1 | 2018-01-31T12:01:41.590924523Z {"@timestamp":"2018-01-31T12:01:41.590+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"Agle2TgiGxs2JM0133dYboQn","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"Agle2TgiGxs2JM0133dYboQn","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"K6bKCG3vOIpoCE-RvN7MweW4"}}
+frontend_1 | 2018-01-31T12:01:41.593066896Z {"@timestamp":"2018-01-31T12:01:41.592+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"Agle2TgiGxs2JM0133dYboQn","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"Agle2TgiGxs2JM0133dYboQn","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"K6bKCG3vOIpoCE-RvN7MweW4"}}
+frontend_1 | 2018-01-31T12:01:41.593336196Z {"@timestamp":"2018-01-31T12:01:41.593+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"YwRDp3bl91xlxx1SA5F3DUjm","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"H5lDCMf66dllSkjYNpReaIO3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"YwRDp3bl91xlxx1SA5F3DUjm","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"H5lDCMf66dllSkjYNpReaIO3"}}},"contextId":"K6bKCG3vOIpoCE-RvN7MweW4"}}
+frontend_1 | 2018-01-31T12:01:41.596949085Z {"@timestamp":"2018-01-31T12:01:41.596+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"51skApu7kD-FmB3kzmP5IDFU","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5444/13570529685_c33d9204ed_o.jpg"}}},{"name":"IngestionRouting","id":"Agle2TgiGxs2JM0133dYboQn","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"51skApu7kD-FmB3kzmP5IDFU","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5444/13570529685_c33d9204ed_o.jpg"}}}},"contextId":"K6bKCG3vOIpoCE-RvN7MweW4"}}
+frontend_1 | 2018-01-31T12:01:41.597976110Z {"@timestamp":"2018-01-31T12:01:41.597+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"51skApu7kD-FmB3kzmP5IDFU","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5444/13570529685_c33d9204ed_o.jpg"}}},{"name":"IngestionRouting","id":"Agle2TgiGxs2JM0133dYboQn","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"51skApu7kD-FmB3kzmP5IDFU","details":{"request":{"client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5444/13570529685_c33d9204ed_o.jpg"}}}},"contextId":"K6bKCG3vOIpoCE-RvN7MweW4"}}
+frontend_1 | 2018-01-31T12:01:41.600820389Z {"@timestamp":"2018-01-31T12:01:41.599+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"9DwkedYCl0hgTzMBw_N44Ucd","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"528D4689A1111E5C4C6B53765CDDA3758DC3724EBD9550C0EE6158B63A3F4205","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5444/13570529685_c33d9204ed_o.jpg"}}},{"name":"IngestionRouting","id":"Agle2TgiGxs2JM0133dYboQn","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"9DwkedYCl0hgTzMBw_N44Ucd","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"528D4689A1111E5C4C6B53765CDDA3758DC3724EBD9550C0EE6158B63A3F4205","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5444/13570529685_c33d9204ed_o.jpg"}}}},"contextId":"K6bKCG3vOIpoCE-RvN7MweW4"}}
+frontend_1 | 2018-01-31T12:01:41.604021297Z {"@timestamp":"2018-01-31T12:01:41.603+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"9DwkedYCl0hgTzMBw_N44Ucd","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"528D4689A1111E5C4C6B53765CDDA3758DC3724EBD9550C0EE6158B63A3F4205","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5444/13570529685_c33d9204ed_o.jpg"}}},{"name":"IngestionRouting","id":"Agle2TgiGxs2JM0133dYboQn","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"9DwkedYCl0hgTzMBw_N44Ucd","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"528D4689A1111E5C4C6B53765CDDA3758DC3724EBD9550C0EE6158B63A3F4205","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5444/13570529685_c33d9204ed_o.jpg"}}}},"contextId":"K6bKCG3vOIpoCE-RvN7MweW4"}}
+frontend_1 | 2018-01-31T12:01:41.719119044Z {"@timestamp":"2018-01-31T12:01:41.718+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"0Jr-nDfLmrOmBlL0jVCGeyBv","details":{}},{"name":"IngestionRouting","id":"LvnY4KMwwqaVUGGJ_WKbW-Ko","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"UbmKz7sqTIdq6FXlmApcpb_6"}}
+frontend_1 | 2018-01-31T12:01:41.721712484Z {"@timestamp":"2018-01-31T12:01:41.721+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:41.739774066Z {"@timestamp":"2018-01-31T12:01:41.739+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"9DwkedYCl0hgTzMBw_N44Ucd","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"528D4689A1111E5C4C6B53765CDDA3758DC3724EBD9550C0EE6158B63A3F4205","client":"test","metadata":{},"reference":"https://c8.staticflickr.com/6/5444/13570529685_c33d9204ed_o.jpg"}}},{"name":"IngestionRouting","id":"Agle2TgiGxs2JM0133dYboQn","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(f2b32c65-f4c1-a8a7-86b0-b237ca14de79)"},"contextId":"K6bKCG3vOIpoCE-RvN7MweW4"}}
+frontend_1 | 2018-01-31T12:01:41.776725746Z {"@timestamp":"2018-01-31T12:01:41.776+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"AEYTVJzXV-2Bwy_sf7kof-sA","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"qzMD_Bj-WOrK85iX2pkmnVW2"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"AEYTVJzXV-2Bwy_sf7kof-sA","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"qzMD_Bj-WOrK85iX2pkmnVW2"}}},"contextId":"OA1dTw-xM-diGUEw6CPDKHax"}}
+frontend_1 | 2018-01-31T12:01:41.777252608Z {"@timestamp":"2018-01-31T12:01:41.776+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"zLmYOGyqnMcJ0jx4hwKNR9QR","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"zLmYOGyqnMcJ0jx4hwKNR9QR","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"OA1dTw-xM-diGUEw6CPDKHax"}}
+frontend_1 | 2018-01-31T12:01:41.777870390Z {"@timestamp":"2018-01-31T12:01:41.777+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"zLmYOGyqnMcJ0jx4hwKNR9QR","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"zLmYOGyqnMcJ0jx4hwKNR9QR","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"OA1dTw-xM-diGUEw6CPDKHax"}}
+frontend_1 | 2018-01-31T12:01:41.778504852Z {"@timestamp":"2018-01-31T12:01:41.778+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"AEYTVJzXV-2Bwy_sf7kof-sA","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"qzMD_Bj-WOrK85iX2pkmnVW2"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"AEYTVJzXV-2Bwy_sf7kof-sA","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"qzMD_Bj-WOrK85iX2pkmnVW2"}}},"contextId":"OA1dTw-xM-diGUEw6CPDKHax"}}
+frontend_1 | 2018-01-31T12:01:41.785070806Z {"@timestamp":"2018-01-31T12:01:41.784+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"akJX5ZpAgd4lAnk-3FI9UwQ8","details":{}},{"name":"IngestionRouting","id":"zLmYOGyqnMcJ0jx4hwKNR9QR","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"akJX5ZpAgd4lAnk-3FI9UwQ8","details":{}}},"contextId":"OA1dTw-xM-diGUEw6CPDKHax"}}
+frontend_1 | 2018-01-31T12:01:41.785415369Z {"@timestamp":"2018-01-31T12:01:41.785+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"akJX5ZpAgd4lAnk-3FI9UwQ8","details":{}},{"name":"IngestionRouting","id":"zLmYOGyqnMcJ0jx4hwKNR9QR","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"akJX5ZpAgd4lAnk-3FI9UwQ8","details":{}}},"contextId":"OA1dTw-xM-diGUEw6CPDKHax"}}
+frontend_1 | 2018-01-31T12:01:41.786227678Z {"@timestamp":"2018-01-31T12:01:41.785+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"akJX5ZpAgd4lAnk-3FI9UwQ8","details":{}},{"name":"IngestionRouting","id":"zLmYOGyqnMcJ0jx4hwKNR9QR","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"OA1dTw-xM-diGUEw6CPDKHax"}}
+frontend_1 | 2018-01-31T12:01:41.939395410Z {"@timestamp":"2018-01-31T12:01:41.938+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"akJX5ZpAgd4lAnk-3FI9UwQ8","details":{}},{"name":"IngestionRouting","id":"zLmYOGyqnMcJ0jx4hwKNR9QR","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"OA1dTw-xM-diGUEw6CPDKHax"}}
+frontend_1 | 2018-01-31T12:01:41.942365498Z {"@timestamp":"2018-01-31T12:01:41.941+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:43.539841443Z {"@timestamp":"2018-01-31T12:01:43.539+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"l_Z-6PoC4JRAKOFAz4QJ30C9","details":{"endpoint":"GET /health","transactionId":"KkRLuT6lM1K51PGcosD-WSbt"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"l_Z-6PoC4JRAKOFAz4QJ30C9","details":{"endpoint":"GET /health","transactionId":"KkRLuT6lM1K51PGcosD-WSbt"}}},"contextId":"3xRwHRYMixnrmSx4dw5AqK1z"}}
+frontend_1 | 2018-01-31T12:01:43.540348534Z {"@timestamp":"2018-01-31T12:01:43.539+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"l_Z-6PoC4JRAKOFAz4QJ30C9","details":{"endpoint":"GET /health","transactionId":"KkRLuT6lM1K51PGcosD-WSbt"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"l_Z-6PoC4JRAKOFAz4QJ30C9","details":{"endpoint":"GET /health","transactionId":"KkRLuT6lM1K51PGcosD-WSbt"}}},"contextId":"3xRwHRYMixnrmSx4dw5AqK1z"}}
+frontend_1 | 2018-01-31T12:01:43.657657207Z {"@timestamp":"2018-01-31T12:01:43.656+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"wZm2YbK_5cXrhaCpx7zvtmxy","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"zNeiDfzV0UHhIbRyD6Miw5rc"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"wZm2YbK_5cXrhaCpx7zvtmxy","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"zNeiDfzV0UHhIbRyD6Miw5rc"}}},"contextId":"7ICg6QXzqovHqK2zmZarRQXT"}}
+frontend_1 | 2018-01-31T12:01:43.658687825Z {"@timestamp":"2018-01-31T12:01:43.658+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"h3W1lqlcKvfBkjNZoYY5TZ-K","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"h3W1lqlcKvfBkjNZoYY5TZ-K","details":{"partnerId":"test-partner-id"}}},"contextId":"7ICg6QXzqovHqK2zmZarRQXT"}}
+frontend_1 | 2018-01-31T12:01:43.659297021Z {"@timestamp":"2018-01-31T12:01:43.658+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"h3W1lqlcKvfBkjNZoYY5TZ-K","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"h3W1lqlcKvfBkjNZoYY5TZ-K","details":{"partnerId":"test-partner-id"}}},"contextId":"7ICg6QXzqovHqK2zmZarRQXT"}}
+frontend_1 | 2018-01-31T12:01:43.659712895Z {"@timestamp":"2018-01-31T12:01:43.659+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"wZm2YbK_5cXrhaCpx7zvtmxy","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"zNeiDfzV0UHhIbRyD6Miw5rc"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"wZm2YbK_5cXrhaCpx7zvtmxy","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"zNeiDfzV0UHhIbRyD6Miw5rc"}}},"contextId":"7ICg6QXzqovHqK2zmZarRQXT"}}
+frontend_1 | 2018-01-31T12:01:43.662952963Z {"@timestamp":"2018-01-31T12:01:43.662+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"wLEZFdrdDJBsD5cUfMQTotnI","details":{"request":{"client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/6098/6280721188_1b513c802a_o.jpg"}}},{"name":"IngestionRouting","id":"h3W1lqlcKvfBkjNZoYY5TZ-K","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"wLEZFdrdDJBsD5cUfMQTotnI","details":{"request":{"client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/6098/6280721188_1b513c802a_o.jpg"}}}},"contextId":"7ICg6QXzqovHqK2zmZarRQXT"}}
+frontend_1 | 2018-01-31T12:01:43.664163277Z {"@timestamp":"2018-01-31T12:01:43.663+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"wLEZFdrdDJBsD5cUfMQTotnI","details":{"request":{"client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/6098/6280721188_1b513c802a_o.jpg"}}},{"name":"IngestionRouting","id":"h3W1lqlcKvfBkjNZoYY5TZ-K","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"wLEZFdrdDJBsD5cUfMQTotnI","details":{"request":{"client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/6098/6280721188_1b513c802a_o.jpg"}}}},"contextId":"7ICg6QXzqovHqK2zmZarRQXT"}}
+frontend_1 | 2018-01-31T12:01:43.665757734Z {"@timestamp":"2018-01-31T12:01:43.664+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"j7TbhJiDtOQUDQnKQ2lO_wIk","details":{"message":{"partnerId":"test-partner-id","masterId":"89622CDA0B918CA25E6FAE1E139A7ED73020586C53714F9B3C7EAD4CFED94825","client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/6098/6280721188_1b513c802a_o.jpg"}}},{"name":"IngestionRouting","id":"h3W1lqlcKvfBkjNZoYY5TZ-K","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"j7TbhJiDtOQUDQnKQ2lO_wIk","details":{"message":{"partnerId":"test-partner-id","masterId":"89622CDA0B918CA25E6FAE1E139A7ED73020586C53714F9B3C7EAD4CFED94825","client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/6098/6280721188_1b513c802a_o.jpg"}}}},"contextId":"7ICg6QXzqovHqK2zmZarRQXT"}}
+frontend_1 | 2018-01-31T12:01:43.674355017Z {"@timestamp":"2018-01-31T12:01:43.667+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"j7TbhJiDtOQUDQnKQ2lO_wIk","details":{"message":{"partnerId":"test-partner-id","masterId":"89622CDA0B918CA25E6FAE1E139A7ED73020586C53714F9B3C7EAD4CFED94825","client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/6098/6280721188_1b513c802a_o.jpg"}}},{"name":"IngestionRouting","id":"h3W1lqlcKvfBkjNZoYY5TZ-K","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"j7TbhJiDtOQUDQnKQ2lO_wIk","details":{"message":{"partnerId":"test-partner-id","masterId":"89622CDA0B918CA25E6FAE1E139A7ED73020586C53714F9B3C7EAD4CFED94825","client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/6098/6280721188_1b513c802a_o.jpg"}}}},"contextId":"7ICg6QXzqovHqK2zmZarRQXT"}}
+frontend_1 | 2018-01-31T12:01:43.740002076Z {"@timestamp":"2018-01-31T12:01:43.739+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"j7TbhJiDtOQUDQnKQ2lO_wIk","details":{"message":{"partnerId":"test-partner-id","masterId":"89622CDA0B918CA25E6FAE1E139A7ED73020586C53714F9B3C7EAD4CFED94825","client":"test","metadata":{},"reference":"https://farm4.staticflickr.com/6098/6280721188_1b513c802a_o.jpg"}}},{"name":"IngestionRouting","id":"h3W1lqlcKvfBkjNZoYY5TZ-K","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(c034c877-a58a-dc9b-c556-2ac87d204d86)"},"contextId":"7ICg6QXzqovHqK2zmZarRQXT"}}
+frontend_1 | 2018-01-31T12:01:43.982302930Z {"@timestamp":"2018-01-31T12:01:43.979+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"fOiyPpNH2Lm5YhmPLDzCRN4b","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"146azD2M-tcAWDM8oxqU71bS"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"fOiyPpNH2Lm5YhmPLDzCRN4b","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"146azD2M-tcAWDM8oxqU71bS"}}},"contextId":"cA4S6XpF3DDmPHXGY-KO7e9W"}}
+frontend_1 | 2018-01-31T12:01:43.985882084Z {"@timestamp":"2018-01-31T12:01:43.983+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"Timza9Qm19P4SbpxwRIznGQB","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"Timza9Qm19P4SbpxwRIznGQB","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"cA4S6XpF3DDmPHXGY-KO7e9W"}}
+frontend_1 | 2018-01-31T12:01:43.985905271Z {"@timestamp":"2018-01-31T12:01:43.984+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"Timza9Qm19P4SbpxwRIznGQB","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"Timza9Qm19P4SbpxwRIznGQB","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"cA4S6XpF3DDmPHXGY-KO7e9W"}}
+frontend_1 | 2018-01-31T12:01:43.986571302Z {"@timestamp":"2018-01-31T12:01:43.985+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"fOiyPpNH2Lm5YhmPLDzCRN4b","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"146azD2M-tcAWDM8oxqU71bS"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"fOiyPpNH2Lm5YhmPLDzCRN4b","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"146azD2M-tcAWDM8oxqU71bS"}}},"contextId":"cA4S6XpF3DDmPHXGY-KO7e9W"}}
+frontend_1 | 2018-01-31T12:01:44.001714272Z {"@timestamp":"2018-01-31T12:01:44.001+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"-8WzqAtUc4jyHT3Ti1cl40xb","details":{}},{"name":"IngestionRouting","id":"Timza9Qm19P4SbpxwRIznGQB","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"-8WzqAtUc4jyHT3Ti1cl40xb","details":{}}},"contextId":"cA4S6XpF3DDmPHXGY-KO7e9W"}}
+frontend_1 | 2018-01-31T12:01:44.002210927Z {"@timestamp":"2018-01-31T12:01:44.001+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"-8WzqAtUc4jyHT3Ti1cl40xb","details":{}},{"name":"IngestionRouting","id":"Timza9Qm19P4SbpxwRIznGQB","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"-8WzqAtUc4jyHT3Ti1cl40xb","details":{}}},"contextId":"cA4S6XpF3DDmPHXGY-KO7e9W"}}
+frontend_1 | 2018-01-31T12:01:44.003055038Z {"@timestamp":"2018-01-31T12:01:44.002+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"-8WzqAtUc4jyHT3Ti1cl40xb","details":{}},{"name":"IngestionRouting","id":"Timza9Qm19P4SbpxwRIznGQB","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"cA4S6XpF3DDmPHXGY-KO7e9W"}}
+frontend_1 | 2018-01-31T12:01:44.228888106Z {"@timestamp":"2018-01-31T12:01:44.228+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"-8WzqAtUc4jyHT3Ti1cl40xb","details":{}},{"name":"IngestionRouting","id":"Timza9Qm19P4SbpxwRIznGQB","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"cA4S6XpF3DDmPHXGY-KO7e9W"}}
+frontend_1 | 2018-01-31T12:01:44.230663347Z {"@timestamp":"2018-01-31T12:01:44.229+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:44.715210684Z {"@timestamp":"2018-01-31T12:01:44.714+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"uiJUxxRUN4wgRj2TCejmECk5","details":{"endpoint":"GET /health","transactionId":"OVUMpD0QYfYM5E8s_WIzGM_f"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"uiJUxxRUN4wgRj2TCejmECk5","details":{"endpoint":"GET /health","transactionId":"OVUMpD0QYfYM5E8s_WIzGM_f"}}},"contextId":"oR-AIaumE-RzIY3Cw5khB8ij"}}
+frontend_1 | 2018-01-31T12:01:44.716595195Z {"@timestamp":"2018-01-31T12:01:44.715+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"uiJUxxRUN4wgRj2TCejmECk5","details":{"endpoint":"GET /health","transactionId":"OVUMpD0QYfYM5E8s_WIzGM_f"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"uiJUxxRUN4wgRj2TCejmECk5","details":{"endpoint":"GET /health","transactionId":"OVUMpD0QYfYM5E8s_WIzGM_f"}}},"contextId":"oR-AIaumE-RzIY3Cw5khB8ij"}}
+frontend_1 | 2018-01-31T12:01:44.841522223Z {"@timestamp":"2018-01-31T12:01:44.840+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"A0OuAf5_kSIiueT5ELkA8Ui6","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"1yomIjH93iJZCcJhFn4B8NY5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"A0OuAf5_kSIiueT5ELkA8Ui6","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"1yomIjH93iJZCcJhFn4B8NY5"}}},"contextId":"8D08ob1LrUoYUIaccd7RlDFT"}}
+frontend_1 | 2018-01-31T12:01:44.842043662Z {"@timestamp":"2018-01-31T12:01:44.841+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"mVlHUuNsS7kRFP_pQLBrJcYx","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"mVlHUuNsS7kRFP_pQLBrJcYx","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"8D08ob1LrUoYUIaccd7RlDFT"}}
+frontend_1 | 2018-01-31T12:01:44.842560400Z {"@timestamp":"2018-01-31T12:01:44.842+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"mVlHUuNsS7kRFP_pQLBrJcYx","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"mVlHUuNsS7kRFP_pQLBrJcYx","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"8D08ob1LrUoYUIaccd7RlDFT"}}
+frontend_1 | 2018-01-31T12:01:44.842918724Z {"@timestamp":"2018-01-31T12:01:44.842+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"A0OuAf5_kSIiueT5ELkA8Ui6","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"1yomIjH93iJZCcJhFn4B8NY5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"A0OuAf5_kSIiueT5ELkA8Ui6","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"1yomIjH93iJZCcJhFn4B8NY5"}}},"contextId":"8D08ob1LrUoYUIaccd7RlDFT"}}
+frontend_1 | 2018-01-31T12:01:44.846872097Z {"@timestamp":"2018-01-31T12:01:44.846+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"H24w98hv2e_xTWTHz9WQJCnH","details":{"request":{"client":"test","metadata":{},"reference":"https://farm8.staticflickr.com/3513/3962567901_cbb1c2a9a6_o.jpg"}}},{"name":"IngestionRouting","id":"mVlHUuNsS7kRFP_pQLBrJcYx","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"H24w98hv2e_xTWTHz9WQJCnH","details":{"request":{"client":"test","metadata":{},"reference":"https://farm8.staticflickr.com/3513/3962567901_cbb1c2a9a6_o.jpg"}}}},"contextId":"8D08ob1LrUoYUIaccd7RlDFT"}}
+frontend_1 | 2018-01-31T12:01:44.848172398Z {"@timestamp":"2018-01-31T12:01:44.847+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"H24w98hv2e_xTWTHz9WQJCnH","details":{"request":{"client":"test","metadata":{},"reference":"https://farm8.staticflickr.com/3513/3962567901_cbb1c2a9a6_o.jpg"}}},{"name":"IngestionRouting","id":"mVlHUuNsS7kRFP_pQLBrJcYx","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"H24w98hv2e_xTWTHz9WQJCnH","details":{"request":{"client":"test","metadata":{},"reference":"https://farm8.staticflickr.com/3513/3962567901_cbb1c2a9a6_o.jpg"}}}},"contextId":"8D08ob1LrUoYUIaccd7RlDFT"}}
+frontend_1 | 2018-01-31T12:01:44.849451730Z {"@timestamp":"2018-01-31T12:01:44.848+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"rgt-Vf6Wk-2JIFKWFKIbZKw5","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"14E44C20CAA1084C5CBC91B74706D09F2D2D2CCE0A7D4B4782903B86FFE13788","client":"test","metadata":{},"reference":"https://farm8.staticflickr.com/3513/3962567901_cbb1c2a9a6_o.jpg"}}},{"name":"IngestionRouting","id":"mVlHUuNsS7kRFP_pQLBrJcYx","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"rgt-Vf6Wk-2JIFKWFKIbZKw5","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"14E44C20CAA1084C5CBC91B74706D09F2D2D2CCE0A7D4B4782903B86FFE13788","client":"test","metadata":{},"reference":"https://farm8.staticflickr.com/3513/3962567901_cbb1c2a9a6_o.jpg"}}}},"contextId":"8D08ob1LrUoYUIaccd7RlDFT"}}
+frontend_1 | 2018-01-31T12:01:44.852095886Z {"@timestamp":"2018-01-31T12:01:44.849+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"rgt-Vf6Wk-2JIFKWFKIbZKw5","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"14E44C20CAA1084C5CBC91B74706D09F2D2D2CCE0A7D4B4782903B86FFE13788","client":"test","metadata":{},"reference":"https://farm8.staticflickr.com/3513/3962567901_cbb1c2a9a6_o.jpg"}}},{"name":"IngestionRouting","id":"mVlHUuNsS7kRFP_pQLBrJcYx","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"rgt-Vf6Wk-2JIFKWFKIbZKw5","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"14E44C20CAA1084C5CBC91B74706D09F2D2D2CCE0A7D4B4782903B86FFE13788","client":"test","metadata":{},"reference":"https://farm8.staticflickr.com/3513/3962567901_cbb1c2a9a6_o.jpg"}}}},"contextId":"8D08ob1LrUoYUIaccd7RlDFT"}}
+frontend_1 | 2018-01-31T12:01:44.929422906Z {"@timestamp":"2018-01-31T12:01:44.928+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"rgt-Vf6Wk-2JIFKWFKIbZKw5","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"14E44C20CAA1084C5CBC91B74706D09F2D2D2CCE0A7D4B4782903B86FFE13788","client":"test","metadata":{},"reference":"https://farm8.staticflickr.com/3513/3962567901_cbb1c2a9a6_o.jpg"}}},{"name":"IngestionRouting","id":"mVlHUuNsS7kRFP_pQLBrJcYx","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(da706c01-fed5-fd3b-91cf-17d624847817)"},"contextId":"8D08ob1LrUoYUIaccd7RlDFT"}}
+frontend_1 | 2018-01-31T12:01:44.984068120Z {"@timestamp":"2018-01-31T12:01:44.983+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"esXSO4zCaJcNZqgkcybHd2As","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"pZoUp-QVkE-BVMv7hKz1rd-i"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"esXSO4zCaJcNZqgkcybHd2As","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"pZoUp-QVkE-BVMv7hKz1rd-i"}}},"contextId":"qWcFuYMgOvhEedh4WuSu4xpe"}}
+frontend_1 | 2018-01-31T12:01:44.985343040Z {"@timestamp":"2018-01-31T12:01:44.984+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"XMrC0QC2c8l5K3vpWD_hlj-R","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"XMrC0QC2c8l5K3vpWD_hlj-R","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"qWcFuYMgOvhEedh4WuSu4xpe"}}
+frontend_1 | 2018-01-31T12:01:44.985763134Z {"@timestamp":"2018-01-31T12:01:44.985+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"XMrC0QC2c8l5K3vpWD_hlj-R","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"XMrC0QC2c8l5K3vpWD_hlj-R","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"qWcFuYMgOvhEedh4WuSu4xpe"}}
+frontend_1 | 2018-01-31T12:01:44.986250623Z {"@timestamp":"2018-01-31T12:01:44.985+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"esXSO4zCaJcNZqgkcybHd2As","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"pZoUp-QVkE-BVMv7hKz1rd-i"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"esXSO4zCaJcNZqgkcybHd2As","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"pZoUp-QVkE-BVMv7hKz1rd-i"}}},"contextId":"qWcFuYMgOvhEedh4WuSu4xpe"}}
+frontend_1 | 2018-01-31T12:01:44.998079081Z {"@timestamp":"2018-01-31T12:01:44.997+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"77lj1zClKgwSYX1ePkQG9-R9","details":{}},{"name":"IngestionRouting","id":"XMrC0QC2c8l5K3vpWD_hlj-R","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"77lj1zClKgwSYX1ePkQG9-R9","details":{}}},"contextId":"qWcFuYMgOvhEedh4WuSu4xpe"}}
+frontend_1 | 2018-01-31T12:01:44.998848991Z {"@timestamp":"2018-01-31T12:01:44.998+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"77lj1zClKgwSYX1ePkQG9-R9","details":{}},{"name":"IngestionRouting","id":"XMrC0QC2c8l5K3vpWD_hlj-R","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"77lj1zClKgwSYX1ePkQG9-R9","details":{}}},"contextId":"qWcFuYMgOvhEedh4WuSu4xpe"}}
+frontend_1 | 2018-01-31T12:01:44.999977887Z {"@timestamp":"2018-01-31T12:01:44.999+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"77lj1zClKgwSYX1ePkQG9-R9","details":{}},{"name":"IngestionRouting","id":"XMrC0QC2c8l5K3vpWD_hlj-R","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"qWcFuYMgOvhEedh4WuSu4xpe"}}
+frontend_1 | 2018-01-31T12:01:45.369285109Z {"@timestamp":"2018-01-31T12:01:45.368+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"77lj1zClKgwSYX1ePkQG9-R9","details":{}},{"name":"IngestionRouting","id":"XMrC0QC2c8l5K3vpWD_hlj-R","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"qWcFuYMgOvhEedh4WuSu4xpe"}}
+frontend_1 | 2018-01-31T12:01:45.371740679Z {"@timestamp":"2018-01-31T12:01:45.371+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:45.644922371Z {"@timestamp":"2018-01-31T12:01:45.641+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"eJyy4dEfRTl73KR-4Nke3bMJ","details":{"endpoint":"GET /health","transactionId":"maVuStESuJDDv_DkzC3mqpuK"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"eJyy4dEfRTl73KR-4Nke3bMJ","details":{"endpoint":"GET /health","transactionId":"maVuStESuJDDv_DkzC3mqpuK"}}},"contextId":"mUv9yNKHiuTke4hkdBhtUWF_"}}
+frontend_1 | 2018-01-31T12:01:45.647094133Z {"@timestamp":"2018-01-31T12:01:45.645+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"eJyy4dEfRTl73KR-4Nke3bMJ","details":{"endpoint":"GET /health","transactionId":"maVuStESuJDDv_DkzC3mqpuK"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"eJyy4dEfRTl73KR-4Nke3bMJ","details":{"endpoint":"GET /health","transactionId":"maVuStESuJDDv_DkzC3mqpuK"}}},"contextId":"mUv9yNKHiuTke4hkdBhtUWF_"}}
+frontend_1 | 2018-01-31T12:01:45.781645459Z {"@timestamp":"2018-01-31T12:01:45.780+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"OPCZN5C9U8copafQ-SHaXb6k","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"XC6AyhKpyyrUk-Q9c0WhjQyz"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"OPCZN5C9U8copafQ-SHaXb6k","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"XC6AyhKpyyrUk-Q9c0WhjQyz"}}},"contextId":"GROMBRQgXfhYzOfFJWNAv7Uu"}}
+frontend_1 | 2018-01-31T12:01:45.782262692Z {"@timestamp":"2018-01-31T12:01:45.781+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"RV099EVIhmld7gl7G_Oj_edb","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"RV099EVIhmld7gl7G_Oj_edb","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"GROMBRQgXfhYzOfFJWNAv7Uu"}}
+frontend_1 | 2018-01-31T12:01:45.782775819Z {"@timestamp":"2018-01-31T12:01:45.782+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"RV099EVIhmld7gl7G_Oj_edb","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"RV099EVIhmld7gl7G_Oj_edb","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"GROMBRQgXfhYzOfFJWNAv7Uu"}}
+frontend_1 | 2018-01-31T12:01:45.783082776Z {"@timestamp":"2018-01-31T12:01:45.782+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"OPCZN5C9U8copafQ-SHaXb6k","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"XC6AyhKpyyrUk-Q9c0WhjQyz"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"OPCZN5C9U8copafQ-SHaXb6k","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"XC6AyhKpyyrUk-Q9c0WhjQyz"}}},"contextId":"GROMBRQgXfhYzOfFJWNAv7Uu"}}
+frontend_1 | 2018-01-31T12:01:45.794407977Z {"@timestamp":"2018-01-31T12:01:45.793+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"FZsmQ1jvAjINrGpbss1j70Rl","details":{}},{"name":"IngestionRouting","id":"RV099EVIhmld7gl7G_Oj_edb","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"FZsmQ1jvAjINrGpbss1j70Rl","details":{}}},"contextId":"GROMBRQgXfhYzOfFJWNAv7Uu"}}
+frontend_1 | 2018-01-31T12:01:45.794916527Z {"@timestamp":"2018-01-31T12:01:45.794+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"FZsmQ1jvAjINrGpbss1j70Rl","details":{}},{"name":"IngestionRouting","id":"RV099EVIhmld7gl7G_Oj_edb","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"FZsmQ1jvAjINrGpbss1j70Rl","details":{}}},"contextId":"GROMBRQgXfhYzOfFJWNAv7Uu"}}
+frontend_1 | 2018-01-31T12:01:45.795574391Z {"@timestamp":"2018-01-31T12:01:45.795+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"FZsmQ1jvAjINrGpbss1j70Rl","details":{}},{"name":"IngestionRouting","id":"RV099EVIhmld7gl7G_Oj_edb","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"GROMBRQgXfhYzOfFJWNAv7Uu"}}
+frontend_1 | 2018-01-31T12:01:45.998986621Z {"@timestamp":"2018-01-31T12:01:45.998+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"FZsmQ1jvAjINrGpbss1j70Rl","details":{}},{"name":"IngestionRouting","id":"RV099EVIhmld7gl7G_Oj_edb","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"GROMBRQgXfhYzOfFJWNAv7Uu"}}
+frontend_1 | 2018-01-31T12:01:46.000286258Z {"@timestamp":"2018-01-31T12:01:45.999+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:46.151632443Z {"@timestamp":"2018-01-31T12:01:46.150+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"clWAM5cnKl_ppQtO6VAXkDBv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"5qY_7SMSObMlcriorc7_R9-s"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"clWAM5cnKl_ppQtO6VAXkDBv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"5qY_7SMSObMlcriorc7_R9-s"}}},"contextId":"Rdt1msXUvzocPig2q1eY--Ni"}}
+frontend_1 | 2018-01-31T12:01:46.153099330Z {"@timestamp":"2018-01-31T12:01:46.152+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"R6ZxiCJ6PF20xx75B51QlBoY","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"R6ZxiCJ6PF20xx75B51QlBoY","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"Rdt1msXUvzocPig2q1eY--Ni"}}
+frontend_1 | 2018-01-31T12:01:46.156139250Z {"@timestamp":"2018-01-31T12:01:46.153+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"R6ZxiCJ6PF20xx75B51QlBoY","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"R6ZxiCJ6PF20xx75B51QlBoY","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"Rdt1msXUvzocPig2q1eY--Ni"}}
+frontend_1 | 2018-01-31T12:01:46.166009690Z {"@timestamp":"2018-01-31T12:01:46.157+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"clWAM5cnKl_ppQtO6VAXkDBv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"5qY_7SMSObMlcriorc7_R9-s"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"clWAM5cnKl_ppQtO6VAXkDBv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"5qY_7SMSObMlcriorc7_R9-s"}}},"contextId":"Rdt1msXUvzocPig2q1eY--Ni"}}
+frontend_1 | 2018-01-31T12:01:46.185383315Z {"@timestamp":"2018-01-31T12:01:46.181+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"cuDcPVu1mt-ZmgXVS5nkR4V3","details":{"request":{"client":"test","metadata":{},"reference":"https://farm1.staticflickr.com/47/126255671_449fc81ae2_o.jpg"}}},{"name":"IngestionRouting","id":"R6ZxiCJ6PF20xx75B51QlBoY","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"cuDcPVu1mt-ZmgXVS5nkR4V3","details":{"request":{"client":"test","metadata":{},"reference":"https://farm1.staticflickr.com/47/126255671_449fc81ae2_o.jpg"}}}},"contextId":"Rdt1msXUvzocPig2q1eY--Ni"}}
+frontend_1 | 2018-01-31T12:01:46.194808804Z {"@timestamp":"2018-01-31T12:01:46.194+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"cuDcPVu1mt-ZmgXVS5nkR4V3","details":{"request":{"client":"test","metadata":{},"reference":"https://farm1.staticflickr.com/47/126255671_449fc81ae2_o.jpg"}}},{"name":"IngestionRouting","id":"R6ZxiCJ6PF20xx75B51QlBoY","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"cuDcPVu1mt-ZmgXVS5nkR4V3","details":{"request":{"client":"test","metadata":{},"reference":"https://farm1.staticflickr.com/47/126255671_449fc81ae2_o.jpg"}}}},"contextId":"Rdt1msXUvzocPig2q1eY--Ni"}}
+frontend_1 | 2018-01-31T12:01:46.195499243Z {"@timestamp":"2018-01-31T12:01:46.195+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"NBJvOIa4dCEgDab_AOAknsqU","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"34FCEFD744EE7E199255D00968DC9D734EEFA1EA7E5666D46F4D1B62EA2995DB","client":"test","metadata":{},"reference":"https://farm1.staticflickr.com/47/126255671_449fc81ae2_o.jpg"}}},{"name":"IngestionRouting","id":"R6ZxiCJ6PF20xx75B51QlBoY","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"NBJvOIa4dCEgDab_AOAknsqU","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"34FCEFD744EE7E199255D00968DC9D734EEFA1EA7E5666D46F4D1B62EA2995DB","client":"test","metadata":{},"reference":"https://farm1.staticflickr.com/47/126255671_449fc81ae2_o.jpg"}}}},"contextId":"Rdt1msXUvzocPig2q1eY--Ni"}}
+frontend_1 | 2018-01-31T12:01:46.197404928Z {"@timestamp":"2018-01-31T12:01:46.195+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"NBJvOIa4dCEgDab_AOAknsqU","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"34FCEFD744EE7E199255D00968DC9D734EEFA1EA7E5666D46F4D1B62EA2995DB","client":"test","metadata":{},"reference":"https://farm1.staticflickr.com/47/126255671_449fc81ae2_o.jpg"}}},{"name":"IngestionRouting","id":"R6ZxiCJ6PF20xx75B51QlBoY","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"NBJvOIa4dCEgDab_AOAknsqU","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"34FCEFD744EE7E199255D00968DC9D734EEFA1EA7E5666D46F4D1B62EA2995DB","client":"test","metadata":{},"reference":"https://farm1.staticflickr.com/47/126255671_449fc81ae2_o.jpg"}}}},"contextId":"Rdt1msXUvzocPig2q1eY--Ni"}}
+frontend_1 | 2018-01-31T12:01:46.270367061Z {"@timestamp":"2018-01-31T12:01:46.268+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"NBJvOIa4dCEgDab_AOAknsqU","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"34FCEFD744EE7E199255D00968DC9D734EEFA1EA7E5666D46F4D1B62EA2995DB","client":"test","metadata":{},"reference":"https://farm1.staticflickr.com/47/126255671_449fc81ae2_o.jpg"}}},{"name":"IngestionRouting","id":"R6ZxiCJ6PF20xx75B51QlBoY","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(f5042ab9-16f3-9157-9bc2-c034bf3b8cff)"},"contextId":"Rdt1msXUvzocPig2q1eY--Ni"}}
+frontend_1 | 2018-01-31T12:01:47.856416179Z {"@timestamp":"2018-01-31T12:01:47.855+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"IqMOdjgKFfw1uUrrwDppA97M","details":{"endpoint":"GET /health","transactionId":"RaeDlcd_ecB3jTRz_tlkU0WZ"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"IqMOdjgKFfw1uUrrwDppA97M","details":{"endpoint":"GET /health","transactionId":"RaeDlcd_ecB3jTRz_tlkU0WZ"}}},"contextId":"p4ua95SnwP9A_TynOaVYsaf_"}}
+frontend_1 | 2018-01-31T12:01:47.857141603Z {"@timestamp":"2018-01-31T12:01:47.856+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"IqMOdjgKFfw1uUrrwDppA97M","details":{"endpoint":"GET /health","transactionId":"RaeDlcd_ecB3jTRz_tlkU0WZ"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"IqMOdjgKFfw1uUrrwDppA97M","details":{"endpoint":"GET /health","transactionId":"RaeDlcd_ecB3jTRz_tlkU0WZ"}}},"contextId":"p4ua95SnwP9A_TynOaVYsaf_"}}
+frontend_1 | 2018-01-31T12:01:48.144949750Z {"@timestamp":"2018-01-31T12:01:48.144+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"FyVdfMuZ16trg0M2OY1ZInTI","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"_9dMUz2kMdufhHdcqFfix150"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"FyVdfMuZ16trg0M2OY1ZInTI","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"_9dMUz2kMdufhHdcqFfix150"}}},"contextId":"uRicyxH2jxqBcZ_c1xEzo5Sn"}}
+frontend_1 | 2018-01-31T12:01:48.145486485Z {"@timestamp":"2018-01-31T12:01:48.145+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"W9FGK4CiOKpebDYVv1A2HIek","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"W9FGK4CiOKpebDYVv1A2HIek","details":{"partnerId":"test-partner-id"}}},"contextId":"uRicyxH2jxqBcZ_c1xEzo5Sn"}}
+frontend_1 | 2018-01-31T12:01:48.145813999Z {"@timestamp":"2018-01-31T12:01:48.145+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"W9FGK4CiOKpebDYVv1A2HIek","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"W9FGK4CiOKpebDYVv1A2HIek","details":{"partnerId":"test-partner-id"}}},"contextId":"uRicyxH2jxqBcZ_c1xEzo5Sn"}}
+frontend_1 | 2018-01-31T12:01:48.146144273Z {"@timestamp":"2018-01-31T12:01:48.145+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"FyVdfMuZ16trg0M2OY1ZInTI","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"_9dMUz2kMdufhHdcqFfix150"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"FyVdfMuZ16trg0M2OY1ZInTI","details":{"endpoint":"POST /v1/upload/test-partner-id/file","transactionId":"_9dMUz2kMdufhHdcqFfix150"}}},"contextId":"uRicyxH2jxqBcZ_c1xEzo5Sn"}}
+frontend_1 | 2018-01-31T12:01:48.153467911Z {"@timestamp":"2018-01-31T12:01:48.153+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"lHgCr57p7ZtddMXbaYqS_-Dc","details":{}},{"name":"IngestionRouting","id":"W9FGK4CiOKpebDYVv1A2HIek","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"lHgCr57p7ZtddMXbaYqS_-Dc","details":{}}},"contextId":"uRicyxH2jxqBcZ_c1xEzo5Sn"}}
+frontend_1 | 2018-01-31T12:01:48.153933871Z {"@timestamp":"2018-01-31T12:01:48.153+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"lHgCr57p7ZtddMXbaYqS_-Dc","details":{}},{"name":"IngestionRouting","id":"W9FGK4CiOKpebDYVv1A2HIek","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"lHgCr57p7ZtddMXbaYqS_-Dc","details":{}}},"contextId":"uRicyxH2jxqBcZ_c1xEzo5Sn"}}
+frontend_1 | 2018-01-31T12:01:48.154639393Z {"@timestamp":"2018-01-31T12:01:48.154+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"lHgCr57p7ZtddMXbaYqS_-Dc","details":{}},{"name":"IngestionRouting","id":"W9FGK4CiOKpebDYVv1A2HIek","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"uRicyxH2jxqBcZ_c1xEzo5Sn"}}
+frontend_1 | 2018-01-31T12:01:48.318004339Z {"@timestamp":"2018-01-31T12:01:48.316+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"g7HY73v96XTswJyPQef-HzTu","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"dTSYp3eYk09ds0NtrjQswczK"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"g7HY73v96XTswJyPQef-HzTu","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"dTSYp3eYk09ds0NtrjQswczK"}}},"contextId":"EMYdgtAh2mt4ni53tSsNqEZ3"}}
+frontend_1 | 2018-01-31T12:01:48.318893792Z {"@timestamp":"2018-01-31T12:01:48.318+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"WzERikaHRkheBlwRiriNi7aA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"WzERikaHRkheBlwRiriNi7aA","details":{"partnerId":"test-partner-id"}}},"contextId":"EMYdgtAh2mt4ni53tSsNqEZ3"}}
+frontend_1 | 2018-01-31T12:01:48.320231172Z {"@timestamp":"2018-01-31T12:01:48.319+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"WzERikaHRkheBlwRiriNi7aA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"WzERikaHRkheBlwRiriNi7aA","details":{"partnerId":"test-partner-id"}}},"contextId":"EMYdgtAh2mt4ni53tSsNqEZ3"}}
+frontend_1 | 2018-01-31T12:01:48.321200267Z {"@timestamp":"2018-01-31T12:01:48.320+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"g7HY73v96XTswJyPQef-HzTu","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"dTSYp3eYk09ds0NtrjQswczK"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"g7HY73v96XTswJyPQef-HzTu","details":{"endpoint":"POST /v1/upload/test-partner-id/url","transactionId":"dTSYp3eYk09ds0NtrjQswczK"}}},"contextId":"EMYdgtAh2mt4ni53tSsNqEZ3"}}
+frontend_1 | 2018-01-31T12:01:48.323497148Z {"@timestamp":"2018-01-31T12:01:48.322+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"CTqysFKdO5TRrIWxpRIMLyw2","details":{"request":{"client":"test","metadata":{},"reference":"https://c3.staticflickr.com/6/5554/15184675641_d4c519e0d9_o.jpg"}}},{"name":"IngestionRouting","id":"WzERikaHRkheBlwRiriNi7aA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"CTqysFKdO5TRrIWxpRIMLyw2","details":{"request":{"client":"test","metadata":{},"reference":"https://c3.staticflickr.com/6/5554/15184675641_d4c519e0d9_o.jpg"}}}},"contextId":"EMYdgtAh2mt4ni53tSsNqEZ3"}}
+frontend_1 | 2018-01-31T12:01:48.325129641Z {"@timestamp":"2018-01-31T12:01:48.324+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"CTqysFKdO5TRrIWxpRIMLyw2","details":{"request":{"client":"test","metadata":{},"reference":"https://c3.staticflickr.com/6/5554/15184675641_d4c519e0d9_o.jpg"}}},{"name":"IngestionRouting","id":"WzERikaHRkheBlwRiriNi7aA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"CTqysFKdO5TRrIWxpRIMLyw2","details":{"request":{"client":"test","metadata":{},"reference":"https://c3.staticflickr.com/6/5554/15184675641_d4c519e0d9_o.jpg"}}}},"contextId":"EMYdgtAh2mt4ni53tSsNqEZ3"}}
+frontend_1 | 2018-01-31T12:01:48.326008380Z {"@timestamp":"2018-01-31T12:01:48.325+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"d5BiOAC6aqZC6fUfWD2vrVkd","details":{"message":{"partnerId":"test-partner-id","masterId":"CA5625AC95D278D64D776679638BD783B7F1107BB7CF77A4B1F4C11C5C3F9BE4","client":"test","metadata":{},"reference":"https://c3.staticflickr.com/6/5554/15184675641_d4c519e0d9_o.jpg"}}},{"name":"IngestionRouting","id":"WzERikaHRkheBlwRiriNi7aA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"d5BiOAC6aqZC6fUfWD2vrVkd","details":{"message":{"partnerId":"test-partner-id","masterId":"CA5625AC95D278D64D776679638BD783B7F1107BB7CF77A4B1F4C11C5C3F9BE4","client":"test","metadata":{},"reference":"https://c3.staticflickr.com/6/5554/15184675641_d4c519e0d9_o.jpg"}}}},"contextId":"EMYdgtAh2mt4ni53tSsNqEZ3"}}
+frontend_1 | 2018-01-31T12:01:48.326878135Z {"@timestamp":"2018-01-31T12:01:48.326+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"d5BiOAC6aqZC6fUfWD2vrVkd","details":{"message":{"partnerId":"test-partner-id","masterId":"CA5625AC95D278D64D776679638BD783B7F1107BB7CF77A4B1F4C11C5C3F9BE4","client":"test","metadata":{},"reference":"https://c3.staticflickr.com/6/5554/15184675641_d4c519e0d9_o.jpg"}}},{"name":"IngestionRouting","id":"WzERikaHRkheBlwRiriNi7aA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"d5BiOAC6aqZC6fUfWD2vrVkd","details":{"message":{"partnerId":"test-partner-id","masterId":"CA5625AC95D278D64D776679638BD783B7F1107BB7CF77A4B1F4C11C5C3F9BE4","client":"test","metadata":{},"reference":"https://c3.staticflickr.com/6/5554/15184675641_d4c519e0d9_o.jpg"}}}},"contextId":"EMYdgtAh2mt4ni53tSsNqEZ3"}}
+frontend_1 | 2018-01-31T12:01:48.359137909Z {"@timestamp":"2018-01-31T12:01:48.358+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"lHgCr57p7ZtddMXbaYqS_-Dc","details":{}},{"name":"IngestionRouting","id":"W9FGK4CiOKpebDYVv1A2HIek","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"uRicyxH2jxqBcZ_c1xEzo5Sn"}}
+frontend_1 | 2018-01-31T12:01:48.362164649Z {"@timestamp":"2018-01-31T12:01:48.361+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:48.399296984Z {"@timestamp":"2018-01-31T12:01:48.398+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"d5BiOAC6aqZC6fUfWD2vrVkd","details":{"message":{"partnerId":"test-partner-id","masterId":"CA5625AC95D278D64D776679638BD783B7F1107BB7CF77A4B1F4C11C5C3F9BE4","client":"test","metadata":{},"reference":"https://c3.staticflickr.com/6/5554/15184675641_d4c519e0d9_o.jpg"}}},{"name":"IngestionRouting","id":"WzERikaHRkheBlwRiriNi7aA","details":{"partnerId":"test-partner-id"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(8083a0ef-9f03-9e4f-de99-f455e67d6601)"},"contextId":"EMYdgtAh2mt4ni53tSsNqEZ3"}}
+frontend_1 | 2018-01-31T12:01:48.586219571Z {"@timestamp":"2018-01-31T12:01:48.585+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"VJqjMBoyA-2wWSPtiAbloypO","details":{"endpoint":"GET /health","transactionId":"-uncsgHL1la6JCCZ0_HkOxB6"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"VJqjMBoyA-2wWSPtiAbloypO","details":{"endpoint":"GET /health","transactionId":"-uncsgHL1la6JCCZ0_HkOxB6"}}},"contextId":"NH3Ecoy0m8C0dOwpRwZqVZpF"}}
+frontend_1 | 2018-01-31T12:01:48.586570039Z {"@timestamp":"2018-01-31T12:01:48.586+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"VJqjMBoyA-2wWSPtiAbloypO","details":{"endpoint":"GET /health","transactionId":"-uncsgHL1la6JCCZ0_HkOxB6"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"VJqjMBoyA-2wWSPtiAbloypO","details":{"endpoint":"GET /health","transactionId":"-uncsgHL1la6JCCZ0_HkOxB6"}}},"contextId":"NH3Ecoy0m8C0dOwpRwZqVZpF"}}
+frontend_1 | 2018-01-31T12:01:48.818033117Z {"@timestamp":"2018-01-31T12:01:48.817+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"1nEjMNN01gUw_Y3QjHnRJeCc","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"hLVfr7o_TZcD58jnx8Wn-nSZ"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"1nEjMNN01gUw_Y3QjHnRJeCc","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"hLVfr7o_TZcD58jnx8Wn-nSZ"}}},"contextId":"xZsxdBPIKlH2F7g6cqLFEwKK"}}
+frontend_1 | 2018-01-31T12:01:48.818848344Z {"@timestamp":"2018-01-31T12:01:48.818+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"1zaplGiXlP3-Tk1QcIZ1hCxA","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"1zaplGiXlP3-Tk1QcIZ1hCxA","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"xZsxdBPIKlH2F7g6cqLFEwKK"}}
+frontend_1 | 2018-01-31T12:01:48.819443588Z {"@timestamp":"2018-01-31T12:01:48.818+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"1zaplGiXlP3-Tk1QcIZ1hCxA","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"1zaplGiXlP3-Tk1QcIZ1hCxA","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"xZsxdBPIKlH2F7g6cqLFEwKK"}}
+frontend_1 | 2018-01-31T12:01:48.820095986Z {"@timestamp":"2018-01-31T12:01:48.819+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"1nEjMNN01gUw_Y3QjHnRJeCc","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"hLVfr7o_TZcD58jnx8Wn-nSZ"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"1nEjMNN01gUw_Y3QjHnRJeCc","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"hLVfr7o_TZcD58jnx8Wn-nSZ"}}},"contextId":"xZsxdBPIKlH2F7g6cqLFEwKK"}}
+frontend_1 | 2018-01-31T12:01:48.821343549Z {"@timestamp":"2018-01-31T12:01:48.820+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"CnDYZYYFabb7KmWL0tJVviiw","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/3160/3087520969_01aa1dd050_o.jpg"}}},{"name":"IngestionRouting","id":"1zaplGiXlP3-Tk1QcIZ1hCxA","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"CnDYZYYFabb7KmWL0tJVviiw","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/3160/3087520969_01aa1dd050_o.jpg"}}}},"contextId":"xZsxdBPIKlH2F7g6cqLFEwKK"}}
+frontend_1 | 2018-01-31T12:01:48.822122306Z {"@timestamp":"2018-01-31T12:01:48.821+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"CnDYZYYFabb7KmWL0tJVviiw","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/3160/3087520969_01aa1dd050_o.jpg"}}},{"name":"IngestionRouting","id":"1zaplGiXlP3-Tk1QcIZ1hCxA","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"CnDYZYYFabb7KmWL0tJVviiw","details":{"request":{"client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/3160/3087520969_01aa1dd050_o.jpg"}}}},"contextId":"xZsxdBPIKlH2F7g6cqLFEwKK"}}
+frontend_1 | 2018-01-31T12:01:48.823213874Z {"@timestamp":"2018-01-31T12:01:48.822+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"ekq6HhoSPvZfOzoLmpbVSCkk","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"0329C548BBF3BF7818FF82CF2DB3683903133EF25B33925B40622C1C23F01E4D","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/3160/3087520969_01aa1dd050_o.jpg"}}},{"name":"IngestionRouting","id":"1zaplGiXlP3-Tk1QcIZ1hCxA","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"ekq6HhoSPvZfOzoLmpbVSCkk","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"0329C548BBF3BF7818FF82CF2DB3683903133EF25B33925B40622C1C23F01E4D","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/3160/3087520969_01aa1dd050_o.jpg"}}}},"contextId":"xZsxdBPIKlH2F7g6cqLFEwKK"}}
+frontend_1 | 2018-01-31T12:01:48.825414527Z {"@timestamp":"2018-01-31T12:01:48.823+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"ekq6HhoSPvZfOzoLmpbVSCkk","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"0329C548BBF3BF7818FF82CF2DB3683903133EF25B33925B40622C1C23F01E4D","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/3160/3087520969_01aa1dd050_o.jpg"}}},{"name":"IngestionRouting","id":"1zaplGiXlP3-Tk1QcIZ1hCxA","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"ekq6HhoSPvZfOzoLmpbVSCkk","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"0329C548BBF3BF7818FF82CF2DB3683903133EF25B33925B40622C1C23F01E4D","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/3160/3087520969_01aa1dd050_o.jpg"}}}},"contextId":"xZsxdBPIKlH2F7g6cqLFEwKK"}}
+frontend_1 | 2018-01-31T12:01:48.899361347Z {"@timestamp":"2018-01-31T12:01:48.899+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"ekq6HhoSPvZfOzoLmpbVSCkk","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"0329C548BBF3BF7818FF82CF2DB3683903133EF25B33925B40622C1C23F01E4D","client":"test","metadata":{},"reference":"https://farm5.staticflickr.com/3160/3087520969_01aa1dd050_o.jpg"}}},{"name":"IngestionRouting","id":"1zaplGiXlP3-Tk1QcIZ1hCxA","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(29b3d96f-9652-9aea-d360-081be598dec6)"},"contextId":"xZsxdBPIKlH2F7g6cqLFEwKK"}}
+frontend_1 | 2018-01-31T12:01:49.214383189Z {"@timestamp":"2018-01-31T12:01:49.213+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"adfZf0vQZ1l71lR7fyDde6Hv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"V16vl9feXXbQqbdIbY8OpSUY"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"adfZf0vQZ1l71lR7fyDde6Hv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"V16vl9feXXbQqbdIbY8OpSUY"}}},"contextId":"t-q0B6KPgjtFgcz-m13aXGw0"}}
+frontend_1 | 2018-01-31T12:01:49.215243043Z {"@timestamp":"2018-01-31T12:01:49.214+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"vUs8mlam9-skjKP0qH0A_rgJ","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"vUs8mlam9-skjKP0qH0A_rgJ","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"t-q0B6KPgjtFgcz-m13aXGw0"}}
+frontend_1 | 2018-01-31T12:01:49.216861988Z {"@timestamp":"2018-01-31T12:01:49.216+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"vUs8mlam9-skjKP0qH0A_rgJ","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"vUs8mlam9-skjKP0qH0A_rgJ","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"t-q0B6KPgjtFgcz-m13aXGw0"}}
+frontend_1 | 2018-01-31T12:01:49.217225503Z {"@timestamp":"2018-01-31T12:01:49.216+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"adfZf0vQZ1l71lR7fyDde6Hv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"V16vl9feXXbQqbdIbY8OpSUY"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"adfZf0vQZ1l71lR7fyDde6Hv","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"V16vl9feXXbQqbdIbY8OpSUY"}}},"contextId":"t-q0B6KPgjtFgcz-m13aXGw0"}}
+frontend_1 | 2018-01-31T12:01:49.228450849Z {"@timestamp":"2018-01-31T12:01:49.228+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"y1DMmmyOCv9r_sojS0X1dHV8","details":{}},{"name":"IngestionRouting","id":"vUs8mlam9-skjKP0qH0A_rgJ","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"y1DMmmyOCv9r_sojS0X1dHV8","details":{}}},"contextId":"t-q0B6KPgjtFgcz-m13aXGw0"}}
+frontend_1 | 2018-01-31T12:01:49.229266685Z {"@timestamp":"2018-01-31T12:01:49.228+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"y1DMmmyOCv9r_sojS0X1dHV8","details":{}},{"name":"IngestionRouting","id":"vUs8mlam9-skjKP0qH0A_rgJ","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"y1DMmmyOCv9r_sojS0X1dHV8","details":{}}},"contextId":"t-q0B6KPgjtFgcz-m13aXGw0"}}
+frontend_1 | 2018-01-31T12:01:49.230116346Z {"@timestamp":"2018-01-31T12:01:49.229+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"y1DMmmyOCv9r_sojS0X1dHV8","details":{}},{"name":"IngestionRouting","id":"vUs8mlam9-skjKP0qH0A_rgJ","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"t-q0B6KPgjtFgcz-m13aXGw0"}}
+frontend_1 | 2018-01-31T12:01:49.498868550Z {"@timestamp":"2018-01-31T12:01:49.498+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"y1DMmmyOCv9r_sojS0X1dHV8","details":{}},{"name":"IngestionRouting","id":"vUs8mlam9-skjKP0qH0A_rgJ","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"t-q0B6KPgjtFgcz-m13aXGw0"}}
+frontend_1 | 2018-01-31T12:01:49.500246559Z {"@timestamp":"2018-01-31T12:01:49.499+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:51.739558556Z {"@timestamp":"2018-01-31T12:01:51.738+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"eZJClDArtX_4GpwncLvLcDrX","details":{"endpoint":"GET /health","transactionId":"iG4i9YAfbQPIVAoIphRWPzkc"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"eZJClDArtX_4GpwncLvLcDrX","details":{"endpoint":"GET /health","transactionId":"iG4i9YAfbQPIVAoIphRWPzkc"}}},"contextId":"qx_YDQK-JFD6C3b8sZzZQWfk"}}
+frontend_1 | 2018-01-31T12:01:51.740052821Z {"@timestamp":"2018-01-31T12:01:51.739+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"eZJClDArtX_4GpwncLvLcDrX","details":{"endpoint":"GET /health","transactionId":"iG4i9YAfbQPIVAoIphRWPzkc"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"eZJClDArtX_4GpwncLvLcDrX","details":{"endpoint":"GET /health","transactionId":"iG4i9YAfbQPIVAoIphRWPzkc"}}},"contextId":"qx_YDQK-JFD6C3b8sZzZQWfk"}}
+frontend_1 | 2018-01-31T12:01:51.991306235Z {"@timestamp":"2018-01-31T12:01:51.990+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"t8M6rlzJ7cCsOoBKU-9Qn3m-","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"n7WrmxyHkp8s8tKbO2WHIlAA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"t8M6rlzJ7cCsOoBKU-9Qn3m-","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"n7WrmxyHkp8s8tKbO2WHIlAA"}}},"contextId":"h2SRAW7RxS-8ufhUUqJmZWct"}}
+frontend_1 | 2018-01-31T12:01:51.991826705Z {"@timestamp":"2018-01-31T12:01:51.991+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"aEl5ykVxIaDO_k95pB39_nps","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"aEl5ykVxIaDO_k95pB39_nps","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"h2SRAW7RxS-8ufhUUqJmZWct"}}
+frontend_1 | 2018-01-31T12:01:51.992206218Z {"@timestamp":"2018-01-31T12:01:51.991+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"aEl5ykVxIaDO_k95pB39_nps","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"aEl5ykVxIaDO_k95pB39_nps","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"h2SRAW7RxS-8ufhUUqJmZWct"}}
+frontend_1 | 2018-01-31T12:01:51.992589172Z {"@timestamp":"2018-01-31T12:01:51.992+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"t8M6rlzJ7cCsOoBKU-9Qn3m-","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"n7WrmxyHkp8s8tKbO2WHIlAA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"t8M6rlzJ7cCsOoBKU-9Qn3m-","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/url","transactionId":"n7WrmxyHkp8s8tKbO2WHIlAA"}}},"contextId":"h2SRAW7RxS-8ufhUUqJmZWct"}}
+frontend_1 | 2018-01-31T12:01:51.994391754Z {"@timestamp":"2018-01-31T12:01:51.993+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"X3Rck-7jWG_xdmtw2srW4ijL","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8219/8280501002_ee1801b13c_o.jpg"}}},{"name":"IngestionRouting","id":"aEl5ykVxIaDO_k95pB39_nps","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionByUrlDecode","id":"X3Rck-7jWG_xdmtw2srW4ijL","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8219/8280501002_ee1801b13c_o.jpg"}}}},"contextId":"h2SRAW7RxS-8ufhUUqJmZWct"}}
+frontend_1 | 2018-01-31T12:01:51.995228325Z {"@timestamp":"2018-01-31T12:01:51.994+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionByUrlDecode","id":"X3Rck-7jWG_xdmtw2srW4ijL","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8219/8280501002_ee1801b13c_o.jpg"}}},{"name":"IngestionRouting","id":"aEl5ykVxIaDO_k95pB39_nps","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionByUrlDecode","id":"X3Rck-7jWG_xdmtw2srW4ijL","details":{"request":{"client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8219/8280501002_ee1801b13c_o.jpg"}}}},"contextId":"h2SRAW7RxS-8ufhUUqJmZWct"}}
+frontend_1 | 2018-01-31T12:01:51.995787488Z {"@timestamp":"2018-01-31T12:01:51.995+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"cJ0V4JW3HOFn8tI_e9DfWKTY","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"98AD6A7EDFF728DDD2920A6495621620797658DAE437EAC98E20994BE6115F75","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8219/8280501002_ee1801b13c_o.jpg"}}},{"name":"IngestionRouting","id":"aEl5ykVxIaDO_k95pB39_nps","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"QueueIngestionMessage","id":"cJ0V4JW3HOFn8tI_e9DfWKTY","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"98AD6A7EDFF728DDD2920A6495621620797658DAE437EAC98E20994BE6115F75","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8219/8280501002_ee1801b13c_o.jpg"}}}},"contextId":"h2SRAW7RxS-8ufhUUqJmZWct"}}
+frontend_1 | 2018-01-31T12:01:51.996557767Z {"@timestamp":"2018-01-31T12:01:51.996+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"cJ0V4JW3HOFn8tI_e9DfWKTY","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"98AD6A7EDFF728DDD2920A6495621620797658DAE437EAC98E20994BE6115F75","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8219/8280501002_ee1801b13c_o.jpg"}}},{"name":"IngestionRouting","id":"aEl5ykVxIaDO_k95pB39_nps","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"QueueIngestionMessage","id":"cJ0V4JW3HOFn8tI_e9DfWKTY","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"98AD6A7EDFF728DDD2920A6495621620797658DAE437EAC98E20994BE6115F75","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8219/8280501002_ee1801b13c_o.jpg"}}}},"contextId":"h2SRAW7RxS-8ufhUUqJmZWct"}}
+frontend_1 | 2018-01-31T12:01:52.079861608Z {"@timestamp":"2018-01-31T12:01:52.079+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$com$bamtech$cde$ripcut$core$api$controllers$IngestionController$$queueIngestionMessage$2$$anonfun$9.apply(IngestionController.scala:176)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"QueueIngestionMessage","id":"cJ0V4JW3HOFn8tI_e9DfWKTY","details":{"message":{"partnerId":"test-partner-id-beta","masterId":"98AD6A7EDFF728DDD2920A6495621620797658DAE437EAC98E20994BE6115F75","client":"test","metadata":{},"reference":"https://farm6.staticflickr.com/8219/8280501002_ee1801b13c_o.jpg"}}},{"name":"IngestionRouting","id":"aEl5ykVxIaDO_k95pB39_nps","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"response":"SendMessageResult(29afc2dd-a7c7-d5ab-c55e-71ab07d6b07c)"},"contextId":"h2SRAW7RxS-8ufhUUqJmZWct"}}
+frontend_1 | 2018-01-31T12:01:52.305647946Z {"@timestamp":"2018-01-31T12:01:52.305+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"P-YweMojn83kD7QD6rDn8bFR","details":{"endpoint":"GET /health","transactionId":"zLkkIw6kJ0vnF_BTjtzZF6G_"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"P-YweMojn83kD7QD6rDn8bFR","details":{"endpoint":"GET /health","transactionId":"zLkkIw6kJ0vnF_BTjtzZF6G_"}}},"contextId":"tTj8h-KczFzkkzRSUR8Fw0ME"}}
+frontend_1 | 2018-01-31T12:01:52.306187424Z {"@timestamp":"2018-01-31T12:01:52.305+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"P-YweMojn83kD7QD6rDn8bFR","details":{"endpoint":"GET /health","transactionId":"zLkkIw6kJ0vnF_BTjtzZF6G_"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"P-YweMojn83kD7QD6rDn8bFR","details":{"endpoint":"GET /health","transactionId":"zLkkIw6kJ0vnF_BTjtzZF6G_"}}},"contextId":"tTj8h-KczFzkkzRSUR8Fw0ME"}}
+frontend_1 | 2018-01-31T12:01:52.393953466Z {"@timestamp":"2018-01-31T12:01:52.393+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"UL9bJAY0TwzovCNJiy_V1hOF","details":{"endpoint":"GET /v1/variant/test-partner-id/54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F/crop?width=160&height=108","transactionId":"toG2I9J5RjTg7CVqY_X8M-cy"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"UL9bJAY0TwzovCNJiy_V1hOF","details":{"endpoint":"GET /v1/variant/test-partner-id/54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F/crop?width=160&height=108","transactionId":"toG2I9J5RjTg7CVqY_X8M-cy"}}},"contextId":"UOeh6lxXXbRpiZ-mxGSIbpNO"}}
+frontend_1 | 2018-01-31T12:01:52.397056191Z {"@timestamp":"2018-01-31T12:01:52.396+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"ZTN6HyIR6d1-jIUpMK0vQrZ6","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"ZTN6HyIR6d1-jIUpMK0vQrZ6","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}},"contextId":"UOeh6lxXXbRpiZ-mxGSIbpNO"}}
+frontend_1 | 2018-01-31T12:01:52.403924333Z {"@timestamp":"2018-01-31T12:01:52.403+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"ZTN6HyIR6d1-jIUpMK0vQrZ6","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"ZTN6HyIR6d1-jIUpMK0vQrZ6","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}},"contextId":"UOeh6lxXXbRpiZ-mxGSIbpNO"}}
+frontend_1 | 2018-01-31T12:01:52.405656456Z {"@timestamp":"2018-01-31T12:01:52.405+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"UL9bJAY0TwzovCNJiy_V1hOF","details":{"endpoint":"GET /v1/variant/test-partner-id/54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F/crop?width=160&height=108","transactionId":"toG2I9J5RjTg7CVqY_X8M-cy"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"UL9bJAY0TwzovCNJiy_V1hOF","details":{"endpoint":"GET /v1/variant/test-partner-id/54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F/crop?width=160&height=108","transactionId":"toG2I9J5RjTg7CVqY_X8M-cy"}}},"contextId":"UOeh6lxXXbRpiZ-mxGSIbpNO"}}
+frontend_1 | 2018-01-31T12:01:52.412842062Z {"@timestamp":"2018-01-31T12:01:52.412+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"6vik3OHmzLmRxBUyntCp0aNs","details":{}},{"name":"VariantRouting","id":"ZTN6HyIR6d1-jIUpMK0vQrZ6","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"6vik3OHmzLmRxBUyntCp0aNs","details":{}}},"contextId":"UOeh6lxXXbRpiZ-mxGSIbpNO"}}
+frontend_1 | 2018-01-31T12:01:52.437811070Z {"@timestamp":"2018-01-31T12:01:52.436+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"6vik3OHmzLmRxBUyntCp0aNs","details":{}},{"name":"VariantRouting","id":"ZTN6HyIR6d1-jIUpMK0vQrZ6","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"6vik3OHmzLmRxBUyntCp0aNs","details":{}}},"contextId":"UOeh6lxXXbRpiZ-mxGSIbpNO"}}
+frontend_1 | 2018-01-31T12:01:52.442000372Z {"@timestamp":"2018-01-31T12:01:52.441+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"0GngH5KSuuv8eZLL9MzJguWx","details":{}},{"name":"VariantRouting","id":"ZTN6HyIR6d1-jIUpMK0vQrZ6","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"0GngH5KSuuv8eZLL9MzJguWx","details":{}}},"contextId":"UOeh6lxXXbRpiZ-mxGSIbpNO"}}
+frontend_1 | 2018-01-31T12:01:52.456871786Z {"@timestamp":"2018-01-31T12:01:52.455+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"0GngH5KSuuv8eZLL9MzJguWx","details":{}},{"name":"VariantRouting","id":"ZTN6HyIR6d1-jIUpMK0vQrZ6","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"0GngH5KSuuv8eZLL9MzJguWx","details":{}}},"contextId":"UOeh6lxXXbRpiZ-mxGSIbpNO"}}
+frontend_1 | 2018-01-31T12:01:52.465234949Z {"@timestamp":"2018-01-31T12:01:52.464+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"2iYb2gTOijHfh4D7hloL0nv3","details":{"request":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"ZTN6HyIR6d1-jIUpMK0vQrZ6","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"2iYb2gTOijHfh4D7hloL0nv3","details":{"request":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F","dimensions":{"width":160,"height":108}}}}},"contextId":"UOeh6lxXXbRpiZ-mxGSIbpNO"}}
+frontend_1 | 2018-01-31T12:01:52.583772301Z {"@timestamp":"2018-01-31T12:01:52.583+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"1lkfX7pzxuDJ1NEvsoRG46DS","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"PbqDoXXnkc8sK0C-bQraMZol"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"1lkfX7pzxuDJ1NEvsoRG46DS","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"PbqDoXXnkc8sK0C-bQraMZol"}}},"contextId":"LYwTWtthaiSqU-yYN7KIrbt5"}}
+frontend_1 | 2018-01-31T12:01:52.584151447Z {"@timestamp":"2018-01-31T12:01:52.583+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"MJwTF3uJFs8Z7HL7S1oh2aMd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionRouting","id":"MJwTF3uJFs8Z7HL7S1oh2aMd","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"LYwTWtthaiSqU-yYN7KIrbt5"}}
+frontend_1 | 2018-01-31T12:01:52.584542542Z {"@timestamp":"2018-01-31T12:01:52.584+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"TKw6yt4-VQvRDQVVNtN5YAeZ","operations":[{"name":"IngestionRouting","id":"MJwTF3uJFs8Z7HL7S1oh2aMd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionRouting","id":"MJwTF3uJFs8Z7HL7S1oh2aMd","details":{"partnerId":"test-partner-id-beta"}}},"contextId":"LYwTWtthaiSqU-yYN7KIrbt5"}}
+frontend_1 | 2018-01-31T12:01:52.584929403Z {"@timestamp":"2018-01-31T12:01:52.584+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"1lkfX7pzxuDJ1NEvsoRG46DS","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"PbqDoXXnkc8sK0C-bQraMZol"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"1lkfX7pzxuDJ1NEvsoRG46DS","details":{"endpoint":"POST /v1/upload/test-partner-id-beta/file","transactionId":"PbqDoXXnkc8sK0C-bQraMZol"}}},"contextId":"LYwTWtthaiSqU-yYN7KIrbt5"}}
+frontend_1 | 2018-01-31T12:01:52.598928567Z {"@timestamp":"2018-01-31T12:01:52.598+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"wDHCe5jXdk1_763U4yJY_Moy","details":{}},{"name":"IngestionRouting","id":"MJwTF3uJFs8Z7HL7S1oh2aMd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"IngestionDecodeAndValidate","id":"wDHCe5jXdk1_763U4yJY_Moy","details":{}}},"contextId":"LYwTWtthaiSqU-yYN7KIrbt5"}}
+frontend_1 | 2018-01-31T12:01:52.599619642Z {"@timestamp":"2018-01-31T12:01:52.598+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"wDHCe5jXdk1_763U4yJY_Moy","details":{}},{"name":"IngestionRouting","id":"MJwTF3uJFs8Z7HL7S1oh2aMd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"IngestionDecodeAndValidate","id":"wDHCe5jXdk1_763U4yJY_Moy","details":{}}},"contextId":"LYwTWtthaiSqU-yYN7KIrbt5"}}
+frontend_1 | 2018-01-31T12:01:52.601310754Z {"@timestamp":"2018-01-31T12:01:52.600+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$ingestByPayload$1$$anonfun$apply$9$$anonfun$apply$11$$anonfun$apply$13.apply(IngestionController.scala:107)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"wDHCe5jXdk1_763U4yJY_Moy","details":{}},{"name":"IngestionRouting","id":"MJwTF3uJFs8Z7HL7S1oh2aMd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"descriptor":{"client":"test","metadata":{}}},"contextId":"LYwTWtthaiSqU-yYN7KIrbt5"}}
+frontend_1 | 2018-01-31T12:01:52.682864603Z {"@timestamp":"2018-01-31T12:01:52.681+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"2iYb2gTOijHfh4D7hloL0nv3","details":{"request":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"ZTN6HyIR6d1-jIUpMK0vQrZ6","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"2iYb2gTOijHfh4D7hloL0nv3","details":{"request":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F","dimensions":{"width":160,"height":108}}}}},"contextId":"UOeh6lxXXbRpiZ-mxGSIbpNO"}}
+frontend_1 | 2018-01-31T12:01:52.699299949Z {"@timestamp":"2018-01-31T12:01:52.698+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"M3_9427V1FuA-zuM0gVmXu1F","details":{"endpoint":"GET /health","transactionId":"08i2-qq2UD4RtsVMyUdeTDO9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"M3_9427V1FuA-zuM0gVmXu1F","details":{"endpoint":"GET /health","transactionId":"08i2-qq2UD4RtsVMyUdeTDO9"}}},"contextId":"bz6QfVToc9MMdMWKFNwQUcQ2"}}
+frontend_1 | 2018-01-31T12:01:52.700303201Z {"@timestamp":"2018-01-31T12:01:52.699+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"M3_9427V1FuA-zuM0gVmXu1F","details":{"endpoint":"GET /health","transactionId":"08i2-qq2UD4RtsVMyUdeTDO9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"M3_9427V1FuA-zuM0gVmXu1F","details":{"endpoint":"GET /health","transactionId":"08i2-qq2UD4RtsVMyUdeTDO9"}}},"contextId":"bz6QfVToc9MMdMWKFNwQUcQ2"}}
+frontend_1 | 2018-01-31T12:01:52.776426298Z {"@timestamp":"2018-01-31T12:01:52.775+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"9HCmg5VsmQB8NNNRSuduubsQ","details":{"endpoint":"GET /v1/variant/test-partner-id/C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA/crop?width=1024&height=768","transactionId":"2ajcyXewoDmyr45emqmqXMhL"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"9HCmg5VsmQB8NNNRSuduubsQ","details":{"endpoint":"GET /v1/variant/test-partner-id/C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA/crop?width=1024&height=768","transactionId":"2ajcyXewoDmyr45emqmqXMhL"}}},"contextId":"s-VT9iZQGnzcs4PXfewJdjBT"}}
+frontend_1 | 2018-01-31T12:01:52.777534673Z {"@timestamp":"2018-01-31T12:01:52.777+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"uQWxCmOBnGPhPDnqRApOjhu2","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"uQWxCmOBnGPhPDnqRApOjhu2","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}},"contextId":"s-VT9iZQGnzcs4PXfewJdjBT"}}
+frontend_1 | 2018-01-31T12:01:52.778063063Z {"@timestamp":"2018-01-31T12:01:52.777+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"uQWxCmOBnGPhPDnqRApOjhu2","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"uQWxCmOBnGPhPDnqRApOjhu2","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}},"contextId":"s-VT9iZQGnzcs4PXfewJdjBT"}}
+frontend_1 | 2018-01-31T12:01:52.778717893Z {"@timestamp":"2018-01-31T12:01:52.778+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"9HCmg5VsmQB8NNNRSuduubsQ","details":{"endpoint":"GET /v1/variant/test-partner-id/C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA/crop?width=1024&height=768","transactionId":"2ajcyXewoDmyr45emqmqXMhL"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"9HCmg5VsmQB8NNNRSuduubsQ","details":{"endpoint":"GET /v1/variant/test-partner-id/C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA/crop?width=1024&height=768","transactionId":"2ajcyXewoDmyr45emqmqXMhL"}}},"contextId":"s-VT9iZQGnzcs4PXfewJdjBT"}}
+frontend_1 | 2018-01-31T12:01:52.786739190Z {"@timestamp":"2018-01-31T12:01:52.786+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"bORib8yjKEt2x28EhQNmLe-Q","details":{}},{"name":"VariantRouting","id":"uQWxCmOBnGPhPDnqRApOjhu2","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"bORib8yjKEt2x28EhQNmLe-Q","details":{}}},"contextId":"s-VT9iZQGnzcs4PXfewJdjBT"}}
+frontend_1 | 2018-01-31T12:01:52.789648564Z {"@timestamp":"2018-01-31T12:01:52.787+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"bORib8yjKEt2x28EhQNmLe-Q","details":{}},{"name":"VariantRouting","id":"uQWxCmOBnGPhPDnqRApOjhu2","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"bORib8yjKEt2x28EhQNmLe-Q","details":{}}},"contextId":"s-VT9iZQGnzcs4PXfewJdjBT"}}
+frontend_1 | 2018-01-31T12:01:52.790874124Z {"@timestamp":"2018-01-31T12:01:52.790+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"j40UCOc8vHDEYbngPCNnZ6g1","details":{}},{"name":"VariantRouting","id":"uQWxCmOBnGPhPDnqRApOjhu2","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"j40UCOc8vHDEYbngPCNnZ6g1","details":{}}},"contextId":"s-VT9iZQGnzcs4PXfewJdjBT"}}
+frontend_1 | 2018-01-31T12:01:52.791867433Z {"@timestamp":"2018-01-31T12:01:52.791+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"j40UCOc8vHDEYbngPCNnZ6g1","details":{}},{"name":"VariantRouting","id":"uQWxCmOBnGPhPDnqRApOjhu2","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"j40UCOc8vHDEYbngPCNnZ6g1","details":{}}},"contextId":"s-VT9iZQGnzcs4PXfewJdjBT"}}
+frontend_1 | 2018-01-31T12:01:52.793185252Z {"@timestamp":"2018-01-31T12:01:52.792+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"6OcLkw2UPKL6FQJqws_u2byP","details":{"request":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"uQWxCmOBnGPhPDnqRApOjhu2","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"6OcLkw2UPKL6FQJqws_u2byP","details":{"request":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA","dimensions":{"width":1024,"height":768}}}}},"contextId":"s-VT9iZQGnzcs4PXfewJdjBT"}}
+frontend_1 | 2018-01-31T12:01:52.808499166Z {"@timestamp":"2018-01-31T12:01:52.808+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"6OcLkw2UPKL6FQJqws_u2byP","details":{"request":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"uQWxCmOBnGPhPDnqRApOjhu2","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"6OcLkw2UPKL6FQJqws_u2byP","details":{"request":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA","dimensions":{"width":1024,"height":768}}}}},"contextId":"s-VT9iZQGnzcs4PXfewJdjBT"}}
+frontend_1 | 2018-01-31T12:01:52.808683148Z {"@timestamp":"2018-01-31T12:01:52.808+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.api.controllers.IngestionController$$anonfun$17.apply(IngestionController.scala:239)\n","message":{"instanceId":"XNJoO80ncnsb9nRqsM-D9ZAM","operations":[{"name":"IngestionDecodeAndValidate","id":"wDHCe5jXdk1_763U4yJY_Moy","details":{}},{"name":"IngestionRouting","id":"MJwTF3uJFs8Z7HL7S1oh2aMd","details":{"partnerId":"test-partner-id-beta"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{},"contextId":"LYwTWtthaiSqU-yYN7KIrbt5"}}
+frontend_1 | 2018-01-31T12:01:52.810379517Z {"@timestamp":"2018-01-31T12:01:52.809+00:00","service":"service_IS_UNDEFINED","version":"version_IS_UNDEFINED","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"akka.actor.ActorSystemImpl","level":"WARN","caller":"Caller+2\t at akka.event.slf4j.Slf4jLogger$$anonfun$receive$1.applyOrElse(Slf4jLogger.scala:74)\n","message":"Sending an 2xx 'early' response before end of request was received... Note that the connection will be closed after this response. Also, many clients will not read early responses! Consider only issuing this response after the request data has been completely read!"}
+frontend_1 | 2018-01-31T12:01:52.987897960Z {"@timestamp":"2018-01-31T12:01:52.985+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"2iYb2gTOijHfh4D7hloL0nv3","details":{"request":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"ZTN6HyIR6d1-jIUpMK0vQrZ6","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"UOeh6lxXXbRpiZ-mxGSIbpNO"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:01:53.110650337Z {"@timestamp":"2018-01-31T12:01:53.110+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"6OcLkw2UPKL6FQJqws_u2byP","details":{"request":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"uQWxCmOBnGPhPDnqRApOjhu2","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"s-VT9iZQGnzcs4PXfewJdjBT"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:01:53.521833986Z {"@timestamp":"2018-01-31T12:01:53.520+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"3MBsi0mo2NiMEmxpKxb9rrMN","details":{"endpoint":"GET /health","transactionId":"VSSuvKmVDxxbY3ITgdSRO1su"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"3MBsi0mo2NiMEmxpKxb9rrMN","details":{"endpoint":"GET /health","transactionId":"VSSuvKmVDxxbY3ITgdSRO1su"}}},"contextId":"CXVGW8TKp3_Og8i_O3SWG_9R"}}
+frontend_1 | 2018-01-31T12:01:53.522520906Z {"@timestamp":"2018-01-31T12:01:53.521+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"3MBsi0mo2NiMEmxpKxb9rrMN","details":{"endpoint":"GET /health","transactionId":"VSSuvKmVDxxbY3ITgdSRO1su"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"3MBsi0mo2NiMEmxpKxb9rrMN","details":{"endpoint":"GET /health","transactionId":"VSSuvKmVDxxbY3ITgdSRO1su"}}},"contextId":"CXVGW8TKp3_Og8i_O3SWG_9R"}}
+frontend_1 | 2018-01-31T12:01:53.523804952Z {"@timestamp":"2018-01-31T12:01:53.523+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"WNQHiCK_3h9wy8WBZmFIw56e","details":{"endpoint":"GET /v1/variant/test-partner-id/036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4/crop?width=200&height=1080","transactionId":"H51n5DJ_5lyRe8_7ZT9tebSf"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"WNQHiCK_3h9wy8WBZmFIw56e","details":{"endpoint":"GET /v1/variant/test-partner-id/036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4/crop?width=200&height=1080","transactionId":"H51n5DJ_5lyRe8_7ZT9tebSf"}}},"contextId":"MANCBD7gICHIXmUaL_QqhSot"}}
+frontend_1 | 2018-01-31T12:01:53.524826190Z {"@timestamp":"2018-01-31T12:01:53.524+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"QyWjuv_Ie-V3nfRtrcqphgNW","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"QyWjuv_Ie-V3nfRtrcqphgNW","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}},"contextId":"MANCBD7gICHIXmUaL_QqhSot"}}
+frontend_1 | 2018-01-31T12:01:53.525564969Z {"@timestamp":"2018-01-31T12:01:53.525+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"QyWjuv_Ie-V3nfRtrcqphgNW","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"QyWjuv_Ie-V3nfRtrcqphgNW","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}},"contextId":"MANCBD7gICHIXmUaL_QqhSot"}}
+frontend_1 | 2018-01-31T12:01:53.525905860Z {"@timestamp":"2018-01-31T12:01:53.525+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"WNQHiCK_3h9wy8WBZmFIw56e","details":{"endpoint":"GET /v1/variant/test-partner-id/036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4/crop?width=200&height=1080","transactionId":"H51n5DJ_5lyRe8_7ZT9tebSf"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"WNQHiCK_3h9wy8WBZmFIw56e","details":{"endpoint":"GET /v1/variant/test-partner-id/036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4/crop?width=200&height=1080","transactionId":"H51n5DJ_5lyRe8_7ZT9tebSf"}}},"contextId":"MANCBD7gICHIXmUaL_QqhSot"}}
+frontend_1 | 2018-01-31T12:01:53.527294364Z {"@timestamp":"2018-01-31T12:01:53.526+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"3bUBkiFxaw1Plpo9QZr23A1J","details":{}},{"name":"VariantRouting","id":"QyWjuv_Ie-V3nfRtrcqphgNW","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"3bUBkiFxaw1Plpo9QZr23A1J","details":{}}},"contextId":"MANCBD7gICHIXmUaL_QqhSot"}}
+frontend_1 | 2018-01-31T12:01:53.528167672Z {"@timestamp":"2018-01-31T12:01:53.527+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"3bUBkiFxaw1Plpo9QZr23A1J","details":{}},{"name":"VariantRouting","id":"QyWjuv_Ie-V3nfRtrcqphgNW","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"3bUBkiFxaw1Plpo9QZr23A1J","details":{}}},"contextId":"MANCBD7gICHIXmUaL_QqhSot"}}
+frontend_1 | 2018-01-31T12:01:53.528797246Z {"@timestamp":"2018-01-31T12:01:53.528+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"FBXsy02t0Sma4J91yBAl3J0W","details":{}},{"name":"VariantRouting","id":"QyWjuv_Ie-V3nfRtrcqphgNW","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"FBXsy02t0Sma4J91yBAl3J0W","details":{}}},"contextId":"MANCBD7gICHIXmUaL_QqhSot"}}
+frontend_1 | 2018-01-31T12:01:53.529364685Z {"@timestamp":"2018-01-31T12:01:53.528+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"FBXsy02t0Sma4J91yBAl3J0W","details":{}},{"name":"VariantRouting","id":"QyWjuv_Ie-V3nfRtrcqphgNW","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"FBXsy02t0Sma4J91yBAl3J0W","details":{}}},"contextId":"MANCBD7gICHIXmUaL_QqhSot"}}
+frontend_1 | 2018-01-31T12:01:53.532150339Z {"@timestamp":"2018-01-31T12:01:53.531+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"70NlmXxIUZd7RL3aufk3j9Xx","details":{"request":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4","dimensions":{"width":200,"height":1080}}}},{"name":"VariantRouting","id":"QyWjuv_Ie-V3nfRtrcqphgNW","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"70NlmXxIUZd7RL3aufk3j9Xx","details":{"request":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4","dimensions":{"width":200,"height":1080}}}}},"contextId":"MANCBD7gICHIXmUaL_QqhSot"}}
+frontend_1 | 2018-01-31T12:01:53.545765473Z {"@timestamp":"2018-01-31T12:01:53.544+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"70NlmXxIUZd7RL3aufk3j9Xx","details":{"request":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4","dimensions":{"width":200,"height":1080}}}},{"name":"VariantRouting","id":"QyWjuv_Ie-V3nfRtrcqphgNW","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"70NlmXxIUZd7RL3aufk3j9Xx","details":{"request":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4","dimensions":{"width":200,"height":1080}}}}},"contextId":"MANCBD7gICHIXmUaL_QqhSot"}}
+frontend_1 | 2018-01-31T12:01:53.845713816Z {"@timestamp":"2018-01-31T12:01:53.844+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"70NlmXxIUZd7RL3aufk3j9Xx","details":{"request":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4","dimensions":{"width":200,"height":1080}}}},{"name":"VariantRouting","id":"QyWjuv_Ie-V3nfRtrcqphgNW","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"MANCBD7gICHIXmUaL_QqhSot"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:03.856944500Z {"@timestamp":"2018-01-31T12:02:03.856+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"MgH7ymKOBYAoh0BlFON7ahGd","details":{"endpoint":"GET /health","transactionId":"ua79OT64u9JSNDo0H6CS-scO"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"MgH7ymKOBYAoh0BlFON7ahGd","details":{"endpoint":"GET /health","transactionId":"ua79OT64u9JSNDo0H6CS-scO"}}},"contextId":"dKqIRz7VQoHPxyHHzUGbzjwV"}}
+frontend_1 | 2018-01-31T12:02:03.857927511Z {"@timestamp":"2018-01-31T12:02:03.857+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"MgH7ymKOBYAoh0BlFON7ahGd","details":{"endpoint":"GET /health","transactionId":"ua79OT64u9JSNDo0H6CS-scO"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"MgH7ymKOBYAoh0BlFON7ahGd","details":{"endpoint":"GET /health","transactionId":"ua79OT64u9JSNDo0H6CS-scO"}}},"contextId":"dKqIRz7VQoHPxyHHzUGbzjwV"}}
+frontend_1 | 2018-01-31T12:02:03.857991199Z {"@timestamp":"2018-01-31T12:02:03.857+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"a7UKaEcDNuSzlbL4Fuxt7eGm","details":{"endpoint":"GET /health","transactionId":"s1JanDBL6zUWXEPkaXb97Ciw"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"a7UKaEcDNuSzlbL4Fuxt7eGm","details":{"endpoint":"GET /health","transactionId":"s1JanDBL6zUWXEPkaXb97Ciw"}}},"contextId":"XC9fM_FWfTeDKXJQhzWxgQ3z"}}
+frontend_1 | 2018-01-31T12:02:03.859000522Z {"@timestamp":"2018-01-31T12:02:03.858+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"a7UKaEcDNuSzlbL4Fuxt7eGm","details":{"endpoint":"GET /health","transactionId":"s1JanDBL6zUWXEPkaXb97Ciw"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"a7UKaEcDNuSzlbL4Fuxt7eGm","details":{"endpoint":"GET /health","transactionId":"s1JanDBL6zUWXEPkaXb97Ciw"}}},"contextId":"XC9fM_FWfTeDKXJQhzWxgQ3z"}}
+frontend_1 | 2018-01-31T12:02:03.884822126Z {"@timestamp":"2018-01-31T12:02:03.884+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"IukEYKVtR349OguoOhu2mqHq","details":{"endpoint":"GET /health","transactionId":"zeP0wDD_JsEhpWD7sQSwL9Vu"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"IukEYKVtR349OguoOhu2mqHq","details":{"endpoint":"GET /health","transactionId":"zeP0wDD_JsEhpWD7sQSwL9Vu"}}},"contextId":"DZvjf2hoof7Po4OC1_U3M1Bi"}}
+frontend_1 | 2018-01-31T12:02:03.886033701Z {"@timestamp":"2018-01-31T12:02:03.885+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"K-k-Km7NkKE8le6l7ZNh8YMd","details":{"endpoint":"GET /health","transactionId":"sKS-L9Mgyt4rXBuYl2Z8ckKP"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"K-k-Km7NkKE8le6l7ZNh8YMd","details":{"endpoint":"GET /health","transactionId":"sKS-L9Mgyt4rXBuYl2Z8ckKP"}}},"contextId":"9r_YiqIRYfmArulzmEevuU1e"}}
+frontend_1 | 2018-01-31T12:02:03.886332316Z {"@timestamp":"2018-01-31T12:02:03.886+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"K-k-Km7NkKE8le6l7ZNh8YMd","details":{"endpoint":"GET /health","transactionId":"sKS-L9Mgyt4rXBuYl2Z8ckKP"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"K-k-Km7NkKE8le6l7ZNh8YMd","details":{"endpoint":"GET /health","transactionId":"sKS-L9Mgyt4rXBuYl2Z8ckKP"}}},"contextId":"9r_YiqIRYfmArulzmEevuU1e"}}
+frontend_1 | 2018-01-31T12:02:03.888447808Z {"@timestamp":"2018-01-31T12:02:03.888+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"GNvGK4wOuEonz0mL-Mbx94yT","details":{"endpoint":"GET /health","transactionId":"Hi2qcCV_8XeEyuEMC3n_lN7g"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"GNvGK4wOuEonz0mL-Mbx94yT","details":{"endpoint":"GET /health","transactionId":"Hi2qcCV_8XeEyuEMC3n_lN7g"}}},"contextId":"xDHk3iRbbgmuLbFnvIWXUF4i"}}
+frontend_1 | 2018-01-31T12:02:03.888849321Z {"@timestamp":"2018-01-31T12:02:03.888+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"GNvGK4wOuEonz0mL-Mbx94yT","details":{"endpoint":"GET /health","transactionId":"Hi2qcCV_8XeEyuEMC3n_lN7g"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"GNvGK4wOuEonz0mL-Mbx94yT","details":{"endpoint":"GET /health","transactionId":"Hi2qcCV_8XeEyuEMC3n_lN7g"}}},"contextId":"xDHk3iRbbgmuLbFnvIWXUF4i"}}
+frontend_1 | 2018-01-31T12:02:03.889959044Z {"@timestamp":"2018-01-31T12:02:03.884+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"IukEYKVtR349OguoOhu2mqHq","details":{"endpoint":"GET /health","transactionId":"zeP0wDD_JsEhpWD7sQSwL9Vu"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"IukEYKVtR349OguoOhu2mqHq","details":{"endpoint":"GET /health","transactionId":"zeP0wDD_JsEhpWD7sQSwL9Vu"}}},"contextId":"DZvjf2hoof7Po4OC1_U3M1Bi"}}
+frontend_1 | 2018-01-31T12:02:03.893610492Z {"@timestamp":"2018-01-31T12:02:03.893+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"mftSi3FB0TnQV4XX6cgQbPtG","details":{"endpoint":"GET /health","transactionId":"SItQxFMkJvhky05CS40VB2xw"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"mftSi3FB0TnQV4XX6cgQbPtG","details":{"endpoint":"GET /health","transactionId":"SItQxFMkJvhky05CS40VB2xw"}}},"contextId":"5BlqwJhCaLg80Wc2baBAXfqF"}}
+frontend_1 | 2018-01-31T12:02:03.896025720Z {"@timestamp":"2018-01-31T12:02:03.895+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"mftSi3FB0TnQV4XX6cgQbPtG","details":{"endpoint":"GET /health","transactionId":"SItQxFMkJvhky05CS40VB2xw"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"mftSi3FB0TnQV4XX6cgQbPtG","details":{"endpoint":"GET /health","transactionId":"SItQxFMkJvhky05CS40VB2xw"}}},"contextId":"5BlqwJhCaLg80Wc2baBAXfqF"}}
+frontend_1 | 2018-01-31T12:02:03.899631934Z {"@timestamp":"2018-01-31T12:02:03.885+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"KK3G8daWV4eKImXfvfnrdF4D","details":{"endpoint":"GET /health","transactionId":"VqJKKFWZjTXyULN3jKwTuk4i"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"KK3G8daWV4eKImXfvfnrdF4D","details":{"endpoint":"GET /health","transactionId":"VqJKKFWZjTXyULN3jKwTuk4i"}}},"contextId":"-o4BaLKz5jwDLTQugWcaFUaM"}}
+frontend_1 | 2018-01-31T12:02:03.900251901Z {"@timestamp":"2018-01-31T12:02:03.899+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"KK3G8daWV4eKImXfvfnrdF4D","details":{"endpoint":"GET /health","transactionId":"VqJKKFWZjTXyULN3jKwTuk4i"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"KK3G8daWV4eKImXfvfnrdF4D","details":{"endpoint":"GET /health","transactionId":"VqJKKFWZjTXyULN3jKwTuk4i"}}},"contextId":"-o4BaLKz5jwDLTQugWcaFUaM"}}
+frontend_1 | 2018-01-31T12:02:04.167893374Z {"@timestamp":"2018-01-31T12:02:04.167+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"n143q310AiAnsF0cwccxLO1r","details":{"endpoint":"GET /v1/variant/test-partner-id/13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36/crop?width=288&height=3","transactionId":"JcGgshr-sxnPjGaThwL_gpti"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"n143q310AiAnsF0cwccxLO1r","details":{"endpoint":"GET /v1/variant/test-partner-id/13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36/crop?width=288&height=3","transactionId":"JcGgshr-sxnPjGaThwL_gpti"}}},"contextId":"bp9r1DnZuYJEQWhHeo3UXZaD"}}
+frontend_1 | 2018-01-31T12:02:04.168755223Z {"@timestamp":"2018-01-31T12:02:04.168+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"mxSrN8wvKZES79Y7aKcUgL2M","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"mxSrN8wvKZES79Y7aKcUgL2M","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}},"contextId":"bp9r1DnZuYJEQWhHeo3UXZaD"}}
+frontend_1 | 2018-01-31T12:02:04.169209917Z {"@timestamp":"2018-01-31T12:02:04.168+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"mxSrN8wvKZES79Y7aKcUgL2M","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"mxSrN8wvKZES79Y7aKcUgL2M","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}},"contextId":"bp9r1DnZuYJEQWhHeo3UXZaD"}}
+frontend_1 | 2018-01-31T12:02:04.169677146Z {"@timestamp":"2018-01-31T12:02:04.169+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"n143q310AiAnsF0cwccxLO1r","details":{"endpoint":"GET /v1/variant/test-partner-id/13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36/crop?width=288&height=3","transactionId":"JcGgshr-sxnPjGaThwL_gpti"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"n143q310AiAnsF0cwccxLO1r","details":{"endpoint":"GET /v1/variant/test-partner-id/13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36/crop?width=288&height=3","transactionId":"JcGgshr-sxnPjGaThwL_gpti"}}},"contextId":"bp9r1DnZuYJEQWhHeo3UXZaD"}}
+frontend_1 | 2018-01-31T12:02:04.171605763Z {"@timestamp":"2018-01-31T12:02:04.171+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"PGSHA1-u0RMqo-L8qd_1jjPP","details":{}},{"name":"VariantRouting","id":"mxSrN8wvKZES79Y7aKcUgL2M","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"PGSHA1-u0RMqo-L8qd_1jjPP","details":{}}},"contextId":"bp9r1DnZuYJEQWhHeo3UXZaD"}}
+frontend_1 | 2018-01-31T12:02:04.171829841Z {"@timestamp":"2018-01-31T12:02:04.171+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"2ld5KC0k5CzidepNfNOmG8GJ","details":{"endpoint":"GET /v1/variant/test-partner-id/2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117/crop?width=160&height=120","transactionId":"eLCp9CLZJ7oYRnjqcEyS7FkW"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"2ld5KC0k5CzidepNfNOmG8GJ","details":{"endpoint":"GET /v1/variant/test-partner-id/2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117/crop?width=160&height=120","transactionId":"eLCp9CLZJ7oYRnjqcEyS7FkW"}}},"contextId":"ISTPM4u3HEvslD10T9hKcdiv"}}
+frontend_1 | 2018-01-31T12:02:04.173076240Z {"@timestamp":"2018-01-31T12:02:04.171+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"PGSHA1-u0RMqo-L8qd_1jjPP","details":{}},{"name":"VariantRouting","id":"mxSrN8wvKZES79Y7aKcUgL2M","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"PGSHA1-u0RMqo-L8qd_1jjPP","details":{}}},"contextId":"bp9r1DnZuYJEQWhHeo3UXZaD"}}
+frontend_1 | 2018-01-31T12:02:04.173661785Z {"@timestamp":"2018-01-31T12:02:04.173+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"1Xrq_pOh5ot1nvDDokqKqT7v","details":{"endpoint":"GET /v1/variant/test-partner-id/33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117/crop?width=75&height=75","transactionId":"RBArnl8VCpi_Qrldk85L4k__"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"1Xrq_pOh5ot1nvDDokqKqT7v","details":{"endpoint":"GET /v1/variant/test-partner-id/33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117/crop?width=75&height=75","transactionId":"RBArnl8VCpi_Qrldk85L4k__"}}},"contextId":"9LT3nP8acttUuaDFKhOwA7Ky"}}
+frontend_1 | 2018-01-31T12:02:04.173699511Z {"@timestamp":"2018-01-31T12:02:04.173+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"1Dv3ykBIJ8o5r-Ou5m0z55o0","details":{"endpoint":"GET /v1/variant/test-partner-id/347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986/crop?width=1024&height=768","transactionId":"DVA-BGzD_2LrIKRBMkcGHGkI"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"1Dv3ykBIJ8o5r-Ou5m0z55o0","details":{"endpoint":"GET /v1/variant/test-partner-id/347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986/crop?width=1024&height=768","transactionId":"DVA-BGzD_2LrIKRBMkcGHGkI"}}},"contextId":"mdiYEWRuIDvocUpVI2SB2zPn"}}
+frontend_1 | 2018-01-31T12:02:04.173796203Z {"@timestamp":"2018-01-31T12:02:04.172+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"smn6zHh4ziHouR6MNukQ4_BB","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"smn6zHh4ziHouR6MNukQ4_BB","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}},"contextId":"ISTPM4u3HEvslD10T9hKcdiv"}}
+frontend_1 | 2018-01-31T12:02:04.174443394Z {"@timestamp":"2018-01-31T12:02:04.173+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"xoq7KkENwZykCn7mAXESInJk","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"xoq7KkENwZykCn7mAXESInJk","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}},"contextId":"9LT3nP8acttUuaDFKhOwA7Ky"}}
+frontend_1 | 2018-01-31T12:02:04.174846638Z {"@timestamp":"2018-01-31T12:02:04.174+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"xoq7KkENwZykCn7mAXESInJk","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"xoq7KkENwZykCn7mAXESInJk","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}},"contextId":"9LT3nP8acttUuaDFKhOwA7Ky"}}
+frontend_1 | 2018-01-31T12:02:04.175248466Z {"@timestamp":"2018-01-31T12:02:04.174+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"1Xrq_pOh5ot1nvDDokqKqT7v","details":{"endpoint":"GET /v1/variant/test-partner-id/33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117/crop?width=75&height=75","transactionId":"RBArnl8VCpi_Qrldk85L4k__"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"1Xrq_pOh5ot1nvDDokqKqT7v","details":{"endpoint":"GET /v1/variant/test-partner-id/33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117/crop?width=75&height=75","transactionId":"RBArnl8VCpi_Qrldk85L4k__"}}},"contextId":"9LT3nP8acttUuaDFKhOwA7Ky"}}
+frontend_1 | 2018-01-31T12:02:04.175587411Z {"@timestamp":"2018-01-31T12:02:04.173+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"smn6zHh4ziHouR6MNukQ4_BB","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"smn6zHh4ziHouR6MNukQ4_BB","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}},"contextId":"ISTPM4u3HEvslD10T9hKcdiv"}}
+frontend_1 | 2018-01-31T12:02:04.176856361Z {"@timestamp":"2018-01-31T12:02:04.174+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"KxqJudOBtOmBnNlZBlvU-sdj","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"KxqJudOBtOmBnNlZBlvU-sdj","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}},"contextId":"mdiYEWRuIDvocUpVI2SB2zPn"}}
+frontend_1 | 2018-01-31T12:02:04.177353386Z {"@timestamp":"2018-01-31T12:02:04.176+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"AFTfOzO13BuIA4da4uqJ2si2","details":{"endpoint":"GET /v1/variant/test-partner-id/59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212/crop?width=220&height=148","transactionId":"Gk00ol7aXPx9vw8_tqLXp2_8"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"AFTfOzO13BuIA4da4uqJ2si2","details":{"endpoint":"GET /v1/variant/test-partner-id/59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212/crop?width=220&height=148","transactionId":"Gk00ol7aXPx9vw8_tqLXp2_8"}}},"contextId":"5qzDgkuU-N8O6clkD5sFPqHb"}}
+frontend_1 | 2018-01-31T12:02:04.178098231Z {"@timestamp":"2018-01-31T12:02:04.175+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"2ld5KC0k5CzidepNfNOmG8GJ","details":{"endpoint":"GET /v1/variant/test-partner-id/2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117/crop?width=160&height=120","transactionId":"eLCp9CLZJ7oYRnjqcEyS7FkW"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"2ld5KC0k5CzidepNfNOmG8GJ","details":{"endpoint":"GET /v1/variant/test-partner-id/2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117/crop?width=160&height=120","transactionId":"eLCp9CLZJ7oYRnjqcEyS7FkW"}}},"contextId":"ISTPM4u3HEvslD10T9hKcdiv"}}
+frontend_1 | 2018-01-31T12:02:04.179343669Z {"@timestamp":"2018-01-31T12:02:04.172+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"_CH2Rw4hdAvHfYLr_R9hgey0","details":{}},{"name":"VariantRouting","id":"mxSrN8wvKZES79Y7aKcUgL2M","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"_CH2Rw4hdAvHfYLr_R9hgey0","details":{}}},"contextId":"bp9r1DnZuYJEQWhHeo3UXZaD"}}
+frontend_1 | 2018-01-31T12:02:04.179438265Z {"@timestamp":"2018-01-31T12:02:04.178+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"Pi5_DcGu_2DIfGJE1AZzXXAS","details":{"endpoint":"GET /v1/variant/test-partner-id/9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF/crop?width=160&height=160","transactionId":"PmNph1KtqK0wmpHJNTmD-Q97"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"Pi5_DcGu_2DIfGJE1AZzXXAS","details":{"endpoint":"GET /v1/variant/test-partner-id/9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF/crop?width=160&height=160","transactionId":"PmNph1KtqK0wmpHJNTmD-Q97"}}},"contextId":"Se4Fvr0UvXrIveGAaFiFN407"}}
+frontend_1 | 2018-01-31T12:02:04.179761485Z {"@timestamp":"2018-01-31T12:02:04.177+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"KxqJudOBtOmBnNlZBlvU-sdj","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"KxqJudOBtOmBnNlZBlvU-sdj","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}},"contextId":"mdiYEWRuIDvocUpVI2SB2zPn"}}
+frontend_1 | 2018-01-31T12:02:04.180171631Z {"@timestamp":"2018-01-31T12:02:04.179+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"rFpVyvNUDReahN_-ZYUoVrUs","details":{"partnerId":"test-partner-id","masterId":"9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"rFpVyvNUDReahN_-ZYUoVrUs","details":{"partnerId":"test-partner-id","masterId":"9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF"}}},"contextId":"Se4Fvr0UvXrIveGAaFiFN407"}}
+frontend_1 | 2018-01-31T12:02:04.180320779Z {"@timestamp":"2018-01-31T12:02:04.180+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"rFpVyvNUDReahN_-ZYUoVrUs","details":{"partnerId":"test-partner-id","masterId":"9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"rFpVyvNUDReahN_-ZYUoVrUs","details":{"partnerId":"test-partner-id","masterId":"9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF"}}},"contextId":"Se4Fvr0UvXrIveGAaFiFN407"}}
+frontend_1 | 2018-01-31T12:02:04.180858132Z {"@timestamp":"2018-01-31T12:02:04.179+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"GgS6lLGRsTWGqoc4PkazWjRE","details":{}},{"name":"VariantRouting","id":"xoq7KkENwZykCn7mAXESInJk","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"GgS6lLGRsTWGqoc4PkazWjRE","details":{}}},"contextId":"9LT3nP8acttUuaDFKhOwA7Ky"}}
+frontend_1 | 2018-01-31T12:02:04.180883621Z {"@timestamp":"2018-01-31T12:02:04.180+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"Pi5_DcGu_2DIfGJE1AZzXXAS","details":{"endpoint":"GET /v1/variant/test-partner-id/9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF/crop?width=160&height=160","transactionId":"PmNph1KtqK0wmpHJNTmD-Q97"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"Pi5_DcGu_2DIfGJE1AZzXXAS","details":{"endpoint":"GET /v1/variant/test-partner-id/9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF/crop?width=160&height=160","transactionId":"PmNph1KtqK0wmpHJNTmD-Q97"}}},"contextId":"Se4Fvr0UvXrIveGAaFiFN407"}}
+frontend_1 | 2018-01-31T12:02:04.181095363Z {"@timestamp":"2018-01-31T12:02:04.179+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"_CH2Rw4hdAvHfYLr_R9hgey0","details":{}},{"name":"VariantRouting","id":"mxSrN8wvKZES79Y7aKcUgL2M","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"_CH2Rw4hdAvHfYLr_R9hgey0","details":{}}},"contextId":"bp9r1DnZuYJEQWhHeo3UXZaD"}}
+frontend_1 | 2018-01-31T12:02:04.181908292Z {"@timestamp":"2018-01-31T12:02:04.180+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"1Dv3ykBIJ8o5r-Ou5m0z55o0","details":{"endpoint":"GET /v1/variant/test-partner-id/347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986/crop?width=1024&height=768","transactionId":"DVA-BGzD_2LrIKRBMkcGHGkI"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"1Dv3ykBIJ8o5r-Ou5m0z55o0","details":{"endpoint":"GET /v1/variant/test-partner-id/347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986/crop?width=1024&height=768","transactionId":"DVA-BGzD_2LrIKRBMkcGHGkI"}}},"contextId":"mdiYEWRuIDvocUpVI2SB2zPn"}}
+frontend_1 | 2018-01-31T12:02:04.182045403Z {"@timestamp":"2018-01-31T12:02:04.181+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"-ibSguMuma_3yDqVLvB5UaMT","details":{}},{"name":"VariantRouting","id":"rFpVyvNUDReahN_-ZYUoVrUs","details":{"partnerId":"test-partner-id","masterId":"9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"-ibSguMuma_3yDqVLvB5UaMT","details":{}}},"contextId":"Se4Fvr0UvXrIveGAaFiFN407"}}
+frontend_1 | 2018-01-31T12:02:04.182687287Z {"@timestamp":"2018-01-31T12:02:04.182+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"-ibSguMuma_3yDqVLvB5UaMT","details":{}},{"name":"VariantRouting","id":"rFpVyvNUDReahN_-ZYUoVrUs","details":{"partnerId":"test-partner-id","masterId":"9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"-ibSguMuma_3yDqVLvB5UaMT","details":{}}},"contextId":"Se4Fvr0UvXrIveGAaFiFN407"}}
+frontend_1 | 2018-01-31T12:02:04.183151302Z {"@timestamp":"2018-01-31T12:02:04.182+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"GgS6lLGRsTWGqoc4PkazWjRE","details":{}},{"name":"VariantRouting","id":"xoq7KkENwZykCn7mAXESInJk","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"GgS6lLGRsTWGqoc4PkazWjRE","details":{}}},"contextId":"9LT3nP8acttUuaDFKhOwA7Ky"}}
+frontend_1 | 2018-01-31T12:02:04.183505948Z {"@timestamp":"2018-01-31T12:02:04.183+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"whkNvHgLrTj_l0jb9i3L3wx9","details":{"partnerId":"test-partner-id","masterId":"59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"whkNvHgLrTj_l0jb9i3L3wx9","details":{"partnerId":"test-partner-id","masterId":"59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212"}}},"contextId":"5qzDgkuU-N8O6clkD5sFPqHb"}}
+frontend_1 | 2018-01-31T12:02:04.183549299Z {"@timestamp":"2018-01-31T12:02:04.183+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"3inpORnW1y6l2Bagi6mqZEdY","details":{}},{"name":"VariantRouting","id":"xoq7KkENwZykCn7mAXESInJk","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"3inpORnW1y6l2Bagi6mqZEdY","details":{}}},"contextId":"9LT3nP8acttUuaDFKhOwA7Ky"}}
+frontend_1 | 2018-01-31T12:02:04.183642791Z {"@timestamp":"2018-01-31T12:02:04.183+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"ZtkNB7m90KRbkUFrU8cL0SH3","details":{"request":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36","dimensions":{"width":288,"height":3}}}},{"name":"VariantRouting","id":"mxSrN8wvKZES79Y7aKcUgL2M","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"ZtkNB7m90KRbkUFrU8cL0SH3","details":{"request":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36","dimensions":{"width":288,"height":3}}}}},"contextId":"bp9r1DnZuYJEQWhHeo3UXZaD"}}
+frontend_1 | 2018-01-31T12:02:04.183815604Z {"@timestamp":"2018-01-31T12:02:04.183+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"whkNvHgLrTj_l0jb9i3L3wx9","details":{"partnerId":"test-partner-id","masterId":"59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"whkNvHgLrTj_l0jb9i3L3wx9","details":{"partnerId":"test-partner-id","masterId":"59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212"}}},"contextId":"5qzDgkuU-N8O6clkD5sFPqHb"}}
+frontend_1 | 2018-01-31T12:02:04.184077638Z {"@timestamp":"2018-01-31T12:02:04.183+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"AFTfOzO13BuIA4da4uqJ2si2","details":{"endpoint":"GET /v1/variant/test-partner-id/59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212/crop?width=220&height=148","transactionId":"Gk00ol7aXPx9vw8_tqLXp2_8"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"AFTfOzO13BuIA4da4uqJ2si2","details":{"endpoint":"GET /v1/variant/test-partner-id/59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212/crop?width=220&height=148","transactionId":"Gk00ol7aXPx9vw8_tqLXp2_8"}}},"contextId":"5qzDgkuU-N8O6clkD5sFPqHb"}}
+frontend_1 | 2018-01-31T12:02:04.185616388Z {"@timestamp":"2018-01-31T12:02:04.185+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"3inpORnW1y6l2Bagi6mqZEdY","details":{}},{"name":"VariantRouting","id":"xoq7KkENwZykCn7mAXESInJk","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"3inpORnW1y6l2Bagi6mqZEdY","details":{}}},"contextId":"9LT3nP8acttUuaDFKhOwA7Ky"}}
+frontend_1 | 2018-01-31T12:02:04.186566582Z {"@timestamp":"2018-01-31T12:02:04.186+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"iqKeyVfHVaxnsNZBDyZzeGC5","details":{"request":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117","dimensions":{"width":75,"height":75}}}},{"name":"VariantRouting","id":"xoq7KkENwZykCn7mAXESInJk","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"iqKeyVfHVaxnsNZBDyZzeGC5","details":{"request":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117","dimensions":{"width":75,"height":75}}}}},"contextId":"9LT3nP8acttUuaDFKhOwA7Ky"}}
+frontend_1 | 2018-01-31T12:02:04.186607594Z {"@timestamp":"2018-01-31T12:02:04.186+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"u2UM0SF3Ve6jpZEhInLR20O-","details":{}},{"name":"VariantRouting","id":"whkNvHgLrTj_l0jb9i3L3wx9","details":{"partnerId":"test-partner-id","masterId":"59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"u2UM0SF3Ve6jpZEhInLR20O-","details":{}}},"contextId":"5qzDgkuU-N8O6clkD5sFPqHb"}}
+frontend_1 | 2018-01-31T12:02:04.187080801Z {"@timestamp":"2018-01-31T12:02:04.186+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"u2UM0SF3Ve6jpZEhInLR20O-","details":{}},{"name":"VariantRouting","id":"whkNvHgLrTj_l0jb9i3L3wx9","details":{"partnerId":"test-partner-id","masterId":"59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"u2UM0SF3Ve6jpZEhInLR20O-","details":{}}},"contextId":"5qzDgkuU-N8O6clkD5sFPqHb"}}
+frontend_1 | 2018-01-31T12:02:04.187106257Z {"@timestamp":"2018-01-31T12:02:04.186+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"37pZbaJxZN_soNRUwq9UwrCY","details":{}},{"name":"VariantRouting","id":"KxqJudOBtOmBnNlZBlvU-sdj","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"37pZbaJxZN_soNRUwq9UwrCY","details":{}}},"contextId":"mdiYEWRuIDvocUpVI2SB2zPn"}}
+frontend_1 | 2018-01-31T12:02:04.187377490Z {"@timestamp":"2018-01-31T12:02:04.187+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"I1QS7Oi8bS_TPhck09r-2BmQ","details":{}},{"name":"VariantRouting","id":"whkNvHgLrTj_l0jb9i3L3wx9","details":{"partnerId":"test-partner-id","masterId":"59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"I1QS7Oi8bS_TPhck09r-2BmQ","details":{}}},"contextId":"5qzDgkuU-N8O6clkD5sFPqHb"}}
+frontend_1 | 2018-01-31T12:02:04.187672501Z {"@timestamp":"2018-01-31T12:02:04.187+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"I1QS7Oi8bS_TPhck09r-2BmQ","details":{}},{"name":"VariantRouting","id":"whkNvHgLrTj_l0jb9i3L3wx9","details":{"partnerId":"test-partner-id","masterId":"59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"I1QS7Oi8bS_TPhck09r-2BmQ","details":{}}},"contextId":"5qzDgkuU-N8O6clkD5sFPqHb"}}
+frontend_1 | 2018-01-31T12:02:04.188351880Z {"@timestamp":"2018-01-31T12:02:04.187+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"ZagScQe_xgl4iBrn7IImYw0M","details":{"request":{"partnerId":"test-partner-id","masterId":"59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212","dimensions":{"width":220,"height":148}}}},{"name":"VariantRouting","id":"whkNvHgLrTj_l0jb9i3L3wx9","details":{"partnerId":"test-partner-id","masterId":"59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"ZagScQe_xgl4iBrn7IImYw0M","details":{"request":{"partnerId":"test-partner-id","masterId":"59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212","dimensions":{"width":220,"height":148}}}}},"contextId":"5qzDgkuU-N8O6clkD5sFPqHb"}}
+frontend_1 | 2018-01-31T12:02:04.188867639Z {"@timestamp":"2018-01-31T12:02:04.182+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"Y-PSgcDXeTViHKjx0bmrE40k","details":{}},{"name":"VariantRouting","id":"rFpVyvNUDReahN_-ZYUoVrUs","details":{"partnerId":"test-partner-id","masterId":"9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"Y-PSgcDXeTViHKjx0bmrE40k","details":{}}},"contextId":"Se4Fvr0UvXrIveGAaFiFN407"}}
+frontend_1 | 2018-01-31T12:02:04.189248968Z {"@timestamp":"2018-01-31T12:02:04.188+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"Y-PSgcDXeTViHKjx0bmrE40k","details":{}},{"name":"VariantRouting","id":"rFpVyvNUDReahN_-ZYUoVrUs","details":{"partnerId":"test-partner-id","masterId":"9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"Y-PSgcDXeTViHKjx0bmrE40k","details":{}}},"contextId":"Se4Fvr0UvXrIveGAaFiFN407"}}
+frontend_1 | 2018-01-31T12:02:04.189740923Z {"@timestamp":"2018-01-31T12:02:04.189+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"37pZbaJxZN_soNRUwq9UwrCY","details":{}},{"name":"VariantRouting","id":"KxqJudOBtOmBnNlZBlvU-sdj","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"37pZbaJxZN_soNRUwq9UwrCY","details":{}}},"contextId":"mdiYEWRuIDvocUpVI2SB2zPn"}}
+frontend_1 | 2018-01-31T12:02:04.200735830Z {"@timestamp":"2018-01-31T12:02:04.200+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"rfrtFHLc9i7VMcgVmnlFV8PD","details":{"endpoint":"GET /v1/variant/test-partner-id/C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052/crop?width=160&height=108","transactionId":"vTaJ2oABArbxGS1BuQHn__lp"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"rfrtFHLc9i7VMcgVmnlFV8PD","details":{"endpoint":"GET /v1/variant/test-partner-id/C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052/crop?width=160&height=108","transactionId":"vTaJ2oABArbxGS1BuQHn__lp"}}},"contextId":"FRxxakm1vMgQr9e0qJ5aE-br"}}
+frontend_1 | 2018-01-31T12:02:04.201185235Z {"@timestamp":"2018-01-31T12:02:04.178+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"RM-J-h-8aSSIDNmAn63ggbyY","details":{}},{"name":"VariantRouting","id":"smn6zHh4ziHouR6MNukQ4_BB","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"RM-J-h-8aSSIDNmAn63ggbyY","details":{}}},"contextId":"ISTPM4u3HEvslD10T9hKcdiv"}}
+frontend_1 | 2018-01-31T12:02:04.203013857Z {"@timestamp":"2018-01-31T12:02:04.200+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"UfKXgXMvRYlF707qcvtj_tGV","details":{"partnerId":"test-partner-id","masterId":"C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"UfKXgXMvRYlF707qcvtj_tGV","details":{"partnerId":"test-partner-id","masterId":"C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052"}}},"contextId":"FRxxakm1vMgQr9e0qJ5aE-br"}}
+frontend_1 | 2018-01-31T12:02:04.203126447Z {"@timestamp":"2018-01-31T12:02:04.202+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"VK_yNTQg8JKM8DlCYn6MUSFH","details":{"request":{"partnerId":"test-partner-id","masterId":"9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF","dimensions":{"width":160,"height":160}}}},{"name":"VariantRouting","id":"rFpVyvNUDReahN_-ZYUoVrUs","details":{"partnerId":"test-partner-id","masterId":"9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"VK_yNTQg8JKM8DlCYn6MUSFH","details":{"request":{"partnerId":"test-partner-id","masterId":"9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF","dimensions":{"width":160,"height":160}}}}},"contextId":"Se4Fvr0UvXrIveGAaFiFN407"}}
+frontend_1 | 2018-01-31T12:02:04.203296594Z {"@timestamp":"2018-01-31T12:02:04.202+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"1YMWWD8N_EF_ZMS0xQWs5V1i","details":{}},{"name":"VariantRouting","id":"KxqJudOBtOmBnNlZBlvU-sdj","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"1YMWWD8N_EF_ZMS0xQWs5V1i","details":{}}},"contextId":"mdiYEWRuIDvocUpVI2SB2zPn"}}
+frontend_1 | 2018-01-31T12:02:04.203393750Z {"@timestamp":"2018-01-31T12:02:04.202+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"UfKXgXMvRYlF707qcvtj_tGV","details":{"partnerId":"test-partner-id","masterId":"C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"UfKXgXMvRYlF707qcvtj_tGV","details":{"partnerId":"test-partner-id","masterId":"C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052"}}},"contextId":"FRxxakm1vMgQr9e0qJ5aE-br"}}
+frontend_1 | 2018-01-31T12:02:04.203703126Z {"@timestamp":"2018-01-31T12:02:04.203+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"rfrtFHLc9i7VMcgVmnlFV8PD","details":{"endpoint":"GET /v1/variant/test-partner-id/C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052/crop?width=160&height=108","transactionId":"vTaJ2oABArbxGS1BuQHn__lp"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"rfrtFHLc9i7VMcgVmnlFV8PD","details":{"endpoint":"GET /v1/variant/test-partner-id/C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052/crop?width=160&height=108","transactionId":"vTaJ2oABArbxGS1BuQHn__lp"}}},"contextId":"FRxxakm1vMgQr9e0qJ5aE-br"}}
+frontend_1 | 2018-01-31T12:02:04.204096951Z {"@timestamp":"2018-01-31T12:02:04.203+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"1YMWWD8N_EF_ZMS0xQWs5V1i","details":{}},{"name":"VariantRouting","id":"KxqJudOBtOmBnNlZBlvU-sdj","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"1YMWWD8N_EF_ZMS0xQWs5V1i","details":{}}},"contextId":"mdiYEWRuIDvocUpVI2SB2zPn"}}
+frontend_1 | 2018-01-31T12:02:04.205179733Z {"@timestamp":"2018-01-31T12:02:04.204+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"Z3cGiS6G9Uc2llhGojGVx2QG","details":{"request":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"KxqJudOBtOmBnNlZBlvU-sdj","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"Z3cGiS6G9Uc2llhGojGVx2QG","details":{"request":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986","dimensions":{"width":1024,"height":768}}}}},"contextId":"mdiYEWRuIDvocUpVI2SB2zPn"}}
+frontend_1 | 2018-01-31T12:02:04.205989745Z {"@timestamp":"2018-01-31T12:02:04.205+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"ZagScQe_xgl4iBrn7IImYw0M","details":{"request":{"partnerId":"test-partner-id","masterId":"59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212","dimensions":{"width":220,"height":148}}}},{"name":"VariantRouting","id":"whkNvHgLrTj_l0jb9i3L3wx9","details":{"partnerId":"test-partner-id","masterId":"59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"ZagScQe_xgl4iBrn7IImYw0M","details":{"request":{"partnerId":"test-partner-id","masterId":"59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212","dimensions":{"width":220,"height":148}}}}},"contextId":"5qzDgkuU-N8O6clkD5sFPqHb"}}
+frontend_1 | 2018-01-31T12:02:04.206910254Z {"@timestamp":"2018-01-31T12:02:04.206+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"ZtkNB7m90KRbkUFrU8cL0SH3","details":{"request":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36","dimensions":{"width":288,"height":3}}}},{"name":"VariantRouting","id":"mxSrN8wvKZES79Y7aKcUgL2M","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"ZtkNB7m90KRbkUFrU8cL0SH3","details":{"request":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36","dimensions":{"width":288,"height":3}}}}},"contextId":"bp9r1DnZuYJEQWhHeo3UXZaD"}}
+frontend_1 | 2018-01-31T12:02:04.220513909Z {"@timestamp":"2018-01-31T12:02:04.204+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"018oEy0K6fOu84LHqo97bj13","details":{}},{"name":"VariantRouting","id":"UfKXgXMvRYlF707qcvtj_tGV","details":{"partnerId":"test-partner-id","masterId":"C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"018oEy0K6fOu84LHqo97bj13","details":{}}},"contextId":"FRxxakm1vMgQr9e0qJ5aE-br"}}
+frontend_1 | 2018-01-31T12:02:04.220539661Z {"@timestamp":"2018-01-31T12:02:04.207+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"RM-J-h-8aSSIDNmAn63ggbyY","details":{}},{"name":"VariantRouting","id":"smn6zHh4ziHouR6MNukQ4_BB","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"RM-J-h-8aSSIDNmAn63ggbyY","details":{}}},"contextId":"ISTPM4u3HEvslD10T9hKcdiv"}}
+frontend_1 | 2018-01-31T12:02:04.221031144Z {"@timestamp":"2018-01-31T12:02:04.220+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"018oEy0K6fOu84LHqo97bj13","details":{}},{"name":"VariantRouting","id":"UfKXgXMvRYlF707qcvtj_tGV","details":{"partnerId":"test-partner-id","masterId":"C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"018oEy0K6fOu84LHqo97bj13","details":{}}},"contextId":"FRxxakm1vMgQr9e0qJ5aE-br"}}
+frontend_1 | 2018-01-31T12:02:04.221365136Z {"@timestamp":"2018-01-31T12:02:04.221+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"seuCZ5ltv--h6oQ4W3vr8lD0","details":{}},{"name":"VariantRouting","id":"UfKXgXMvRYlF707qcvtj_tGV","details":{"partnerId":"test-partner-id","masterId":"C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"seuCZ5ltv--h6oQ4W3vr8lD0","details":{}}},"contextId":"FRxxakm1vMgQr9e0qJ5aE-br"}}
+frontend_1 | 2018-01-31T12:02:04.221686665Z {"@timestamp":"2018-01-31T12:02:04.221+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"seuCZ5ltv--h6oQ4W3vr8lD0","details":{}},{"name":"VariantRouting","id":"UfKXgXMvRYlF707qcvtj_tGV","details":{"partnerId":"test-partner-id","masterId":"C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"seuCZ5ltv--h6oQ4W3vr8lD0","details":{}}},"contextId":"FRxxakm1vMgQr9e0qJ5aE-br"}}
+frontend_1 | 2018-01-31T12:02:04.222556652Z {"@timestamp":"2018-01-31T12:02:04.220+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"Q8SS_9caJ_0uJAGX1PjjVVrh","details":{}},{"name":"VariantRouting","id":"smn6zHh4ziHouR6MNukQ4_BB","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"Q8SS_9caJ_0uJAGX1PjjVVrh","details":{}}},"contextId":"ISTPM4u3HEvslD10T9hKcdiv"}}
+frontend_1 | 2018-01-31T12:02:04.223412496Z {"@timestamp":"2018-01-31T12:02:04.222+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"LcLpwtvl0AHO8j5MJRAgmRye","details":{"request":{"partnerId":"test-partner-id","masterId":"C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"UfKXgXMvRYlF707qcvtj_tGV","details":{"partnerId":"test-partner-id","masterId":"C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"LcLpwtvl0AHO8j5MJRAgmRye","details":{"request":{"partnerId":"test-partner-id","masterId":"C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052","dimensions":{"width":160,"height":108}}}}},"contextId":"FRxxakm1vMgQr9e0qJ5aE-br"}}
+frontend_1 | 2018-01-31T12:02:04.223927049Z {"@timestamp":"2018-01-31T12:02:04.223+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"Q8SS_9caJ_0uJAGX1PjjVVrh","details":{}},{"name":"VariantRouting","id":"smn6zHh4ziHouR6MNukQ4_BB","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"Q8SS_9caJ_0uJAGX1PjjVVrh","details":{}}},"contextId":"ISTPM4u3HEvslD10T9hKcdiv"}}
+frontend_1 | 2018-01-31T12:02:04.228998351Z {"@timestamp":"2018-01-31T12:02:04.227+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"CoV5wzwaW6ivwmWN1Pggrzxf","details":{"request":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117","dimensions":{"width":160,"height":120}}}},{"name":"VariantRouting","id":"smn6zHh4ziHouR6MNukQ4_BB","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"CoV5wzwaW6ivwmWN1Pggrzxf","details":{"request":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117","dimensions":{"width":160,"height":120}}}}},"contextId":"ISTPM4u3HEvslD10T9hKcdiv"}}
+frontend_1 | 2018-01-31T12:02:04.234217565Z {"@timestamp":"2018-01-31T12:02:04.233+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"Z3cGiS6G9Uc2llhGojGVx2QG","details":{"request":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"KxqJudOBtOmBnNlZBlvU-sdj","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"Z3cGiS6G9Uc2llhGojGVx2QG","details":{"request":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986","dimensions":{"width":1024,"height":768}}}}},"contextId":"mdiYEWRuIDvocUpVI2SB2zPn"}}
+frontend_1 | 2018-01-31T12:02:04.252466881Z {"@timestamp":"2018-01-31T12:02:04.252+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"iqKeyVfHVaxnsNZBDyZzeGC5","details":{"request":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117","dimensions":{"width":75,"height":75}}}},{"name":"VariantRouting","id":"xoq7KkENwZykCn7mAXESInJk","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"iqKeyVfHVaxnsNZBDyZzeGC5","details":{"request":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117","dimensions":{"width":75,"height":75}}}}},"contextId":"9LT3nP8acttUuaDFKhOwA7Ky"}}
+frontend_1 | 2018-01-31T12:02:04.256852908Z {"@timestamp":"2018-01-31T12:02:04.256+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"LcLpwtvl0AHO8j5MJRAgmRye","details":{"request":{"partnerId":"test-partner-id","masterId":"C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"UfKXgXMvRYlF707qcvtj_tGV","details":{"partnerId":"test-partner-id","masterId":"C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"LcLpwtvl0AHO8j5MJRAgmRye","details":{"request":{"partnerId":"test-partner-id","masterId":"C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052","dimensions":{"width":160,"height":108}}}}},"contextId":"FRxxakm1vMgQr9e0qJ5aE-br"}}
+frontend_1 | 2018-01-31T12:02:04.258643334Z {"@timestamp":"2018-01-31T12:02:04.258+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"VK_yNTQg8JKM8DlCYn6MUSFH","details":{"request":{"partnerId":"test-partner-id","masterId":"9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF","dimensions":{"width":160,"height":160}}}},{"name":"VariantRouting","id":"rFpVyvNUDReahN_-ZYUoVrUs","details":{"partnerId":"test-partner-id","masterId":"9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"VK_yNTQg8JKM8DlCYn6MUSFH","details":{"request":{"partnerId":"test-partner-id","masterId":"9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF","dimensions":{"width":160,"height":160}}}}},"contextId":"Se4Fvr0UvXrIveGAaFiFN407"}}
+frontend_1 | 2018-01-31T12:02:04.258836091Z {"@timestamp":"2018-01-31T12:02:04.257+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"CoV5wzwaW6ivwmWN1Pggrzxf","details":{"request":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117","dimensions":{"width":160,"height":120}}}},{"name":"VariantRouting","id":"smn6zHh4ziHouR6MNukQ4_BB","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"CoV5wzwaW6ivwmWN1Pggrzxf","details":{"request":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117","dimensions":{"width":160,"height":120}}}}},"contextId":"ISTPM4u3HEvslD10T9hKcdiv"}}
+frontend_1 | 2018-01-31T12:02:04.518694518Z {"@timestamp":"2018-01-31T12:02:04.517+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"ZagScQe_xgl4iBrn7IImYw0M","details":{"request":{"partnerId":"test-partner-id","masterId":"59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212","dimensions":{"width":220,"height":148}}}},{"name":"VariantRouting","id":"whkNvHgLrTj_l0jb9i3L3wx9","details":{"partnerId":"test-partner-id","masterId":"59C5D8AC6ABE0525A5423E42E5E77F57D27368DCD94A71CF9F206BFB528C6212"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"5qzDgkuU-N8O6clkD5sFPqHb"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:04.520428093Z {"@timestamp":"2018-01-31T12:02:04.519+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"ZtkNB7m90KRbkUFrU8cL0SH3","details":{"request":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36","dimensions":{"width":288,"height":3}}}},{"name":"VariantRouting","id":"mxSrN8wvKZES79Y7aKcUgL2M","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"bp9r1DnZuYJEQWhHeo3UXZaD"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:04.534945121Z {"@timestamp":"2018-01-31T12:02:04.534+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"Z3cGiS6G9Uc2llhGojGVx2QG","details":{"request":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"KxqJudOBtOmBnNlZBlvU-sdj","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"mdiYEWRuIDvocUpVI2SB2zPn"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:04.555883183Z {"@timestamp":"2018-01-31T12:02:04.553+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"iqKeyVfHVaxnsNZBDyZzeGC5","details":{"request":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117","dimensions":{"width":75,"height":75}}}},{"name":"VariantRouting","id":"xoq7KkENwZykCn7mAXESInJk","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"9LT3nP8acttUuaDFKhOwA7Ky"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:04.565676331Z {"@timestamp":"2018-01-31T12:02:04.564+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"VK_yNTQg8JKM8DlCYn6MUSFH","details":{"request":{"partnerId":"test-partner-id","masterId":"9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF","dimensions":{"width":160,"height":160}}}},{"name":"VariantRouting","id":"rFpVyvNUDReahN_-ZYUoVrUs","details":{"partnerId":"test-partner-id","masterId":"9A5D8BCAE4C392E64A5E2F6F832558AC9356D5BBE7E2BADF535C67D894E740CF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"Se4Fvr0UvXrIveGAaFiFN407"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:04.567628171Z {"@timestamp":"2018-01-31T12:02:04.564+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"LcLpwtvl0AHO8j5MJRAgmRye","details":{"request":{"partnerId":"test-partner-id","masterId":"C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"UfKXgXMvRYlF707qcvtj_tGV","details":{"partnerId":"test-partner-id","masterId":"C97562A6E06684445B97DC9BD35AE9EA3B7667E5043B854146481D3CDA134052"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"FRxxakm1vMgQr9e0qJ5aE-br"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:04.571025593Z {"@timestamp":"2018-01-31T12:02:04.569+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"CoV5wzwaW6ivwmWN1Pggrzxf","details":{"request":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117","dimensions":{"width":160,"height":120}}}},{"name":"VariantRouting","id":"smn6zHh4ziHouR6MNukQ4_BB","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"ISTPM4u3HEvslD10T9hKcdiv"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:04.804084910Z {"@timestamp":"2018-01-31T12:02:04.803+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"fFbj3XgXsCs0xG4qkssZijvI","details":{"endpoint":"GET /health","transactionId":"2rytASRnJElSjIiMKAeZMVES"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"fFbj3XgXsCs0xG4qkssZijvI","details":{"endpoint":"GET /health","transactionId":"2rytASRnJElSjIiMKAeZMVES"}}},"contextId":"VR9UIRHp0m-sn05FKQJvwYjs"}}
+frontend_1 | 2018-01-31T12:02:04.805657691Z {"@timestamp":"2018-01-31T12:02:04.805+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"fFbj3XgXsCs0xG4qkssZijvI","details":{"endpoint":"GET /health","transactionId":"2rytASRnJElSjIiMKAeZMVES"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"fFbj3XgXsCs0xG4qkssZijvI","details":{"endpoint":"GET /health","transactionId":"2rytASRnJElSjIiMKAeZMVES"}}},"contextId":"VR9UIRHp0m-sn05FKQJvwYjs"}}
+frontend_1 | 2018-01-31T12:02:04.969679701Z {"@timestamp":"2018-01-31T12:02:04.969+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"UPMCk9W13zi_OUtqcN-AC9tf","details":{"endpoint":"GET /v1/variant/test-partner-id/4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F/crop?width=220&height=148","transactionId":"aazFxc17FwBzEkuHuzwQFcXP"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"UPMCk9W13zi_OUtqcN-AC9tf","details":{"endpoint":"GET /v1/variant/test-partner-id/4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F/crop?width=220&height=148","transactionId":"aazFxc17FwBzEkuHuzwQFcXP"}}},"contextId":"GE-Vd1fuilQ4mzj8X22sS5TB"}}
+frontend_1 | 2018-01-31T12:02:04.971902569Z {"@timestamp":"2018-01-31T12:02:04.971+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"p_qMJlMMpwe3FyNVlhFxkBs7","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"p_qMJlMMpwe3FyNVlhFxkBs7","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}},"contextId":"GE-Vd1fuilQ4mzj8X22sS5TB"}}
+frontend_1 | 2018-01-31T12:02:04.980918713Z {"@timestamp":"2018-01-31T12:02:04.980+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"p_qMJlMMpwe3FyNVlhFxkBs7","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"p_qMJlMMpwe3FyNVlhFxkBs7","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}},"contextId":"GE-Vd1fuilQ4mzj8X22sS5TB"}}
+frontend_1 | 2018-01-31T12:02:04.986243740Z {"@timestamp":"2018-01-31T12:02:04.985+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"UPMCk9W13zi_OUtqcN-AC9tf","details":{"endpoint":"GET /v1/variant/test-partner-id/4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F/crop?width=220&height=148","transactionId":"aazFxc17FwBzEkuHuzwQFcXP"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"UPMCk9W13zi_OUtqcN-AC9tf","details":{"endpoint":"GET /v1/variant/test-partner-id/4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F/crop?width=220&height=148","transactionId":"aazFxc17FwBzEkuHuzwQFcXP"}}},"contextId":"GE-Vd1fuilQ4mzj8X22sS5TB"}}
+frontend_1 | 2018-01-31T12:02:04.990010198Z {"@timestamp":"2018-01-31T12:02:04.987+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"s0F9G2v8NlVXxFekJbbI8Cde","details":{}},{"name":"VariantRouting","id":"p_qMJlMMpwe3FyNVlhFxkBs7","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"s0F9G2v8NlVXxFekJbbI8Cde","details":{}}},"contextId":"GE-Vd1fuilQ4mzj8X22sS5TB"}}
+frontend_1 | 2018-01-31T12:02:04.991043772Z {"@timestamp":"2018-01-31T12:02:04.990+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"s0F9G2v8NlVXxFekJbbI8Cde","details":{}},{"name":"VariantRouting","id":"p_qMJlMMpwe3FyNVlhFxkBs7","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"s0F9G2v8NlVXxFekJbbI8Cde","details":{}}},"contextId":"GE-Vd1fuilQ4mzj8X22sS5TB"}}
+frontend_1 | 2018-01-31T12:02:04.994823743Z {"@timestamp":"2018-01-31T12:02:04.994+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"zlEtoIRkdTuXtCrYpLpQZpQw","details":{}},{"name":"VariantRouting","id":"p_qMJlMMpwe3FyNVlhFxkBs7","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"zlEtoIRkdTuXtCrYpLpQZpQw","details":{}}},"contextId":"GE-Vd1fuilQ4mzj8X22sS5TB"}}
+frontend_1 | 2018-01-31T12:02:04.995653063Z {"@timestamp":"2018-01-31T12:02:04.995+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"zlEtoIRkdTuXtCrYpLpQZpQw","details":{}},{"name":"VariantRouting","id":"p_qMJlMMpwe3FyNVlhFxkBs7","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"zlEtoIRkdTuXtCrYpLpQZpQw","details":{}}},"contextId":"GE-Vd1fuilQ4mzj8X22sS5TB"}}
+frontend_1 | 2018-01-31T12:02:05.000335847Z {"@timestamp":"2018-01-31T12:02:04.999+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"I-dgGKz9W4YuYiMCXW9m65ht","details":{"request":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F","dimensions":{"width":220,"height":148}}}},{"name":"VariantRouting","id":"p_qMJlMMpwe3FyNVlhFxkBs7","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"I-dgGKz9W4YuYiMCXW9m65ht","details":{"request":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F","dimensions":{"width":220,"height":148}}}}},"contextId":"GE-Vd1fuilQ4mzj8X22sS5TB"}}
+frontend_1 | 2018-01-31T12:02:05.018560016Z {"@timestamp":"2018-01-31T12:02:05.017+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"I-dgGKz9W4YuYiMCXW9m65ht","details":{"request":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F","dimensions":{"width":220,"height":148}}}},{"name":"VariantRouting","id":"p_qMJlMMpwe3FyNVlhFxkBs7","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"I-dgGKz9W4YuYiMCXW9m65ht","details":{"request":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F","dimensions":{"width":220,"height":148}}}}},"contextId":"GE-Vd1fuilQ4mzj8X22sS5TB"}}
+frontend_1 | 2018-01-31T12:02:05.313203912Z {"@timestamp":"2018-01-31T12:02:05.312+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"I-dgGKz9W4YuYiMCXW9m65ht","details":{"request":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F","dimensions":{"width":220,"height":148}}}},{"name":"VariantRouting","id":"p_qMJlMMpwe3FyNVlhFxkBs7","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"GE-Vd1fuilQ4mzj8X22sS5TB"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:05.596377305Z {"@timestamp":"2018-01-31T12:02:05.595+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"7Cii1w7f3M48Esxdbq9UBEs3","details":{"endpoint":"GET /health","transactionId":"S5OjTmD6hwpOfrtCpta4adAz"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"7Cii1w7f3M48Esxdbq9UBEs3","details":{"endpoint":"GET /health","transactionId":"S5OjTmD6hwpOfrtCpta4adAz"}}},"contextId":"uukb0kJCpXApBPMeM9WvXhjd"}}
+frontend_1 | 2018-01-31T12:02:05.596942364Z {"@timestamp":"2018-01-31T12:02:05.596+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"7Cii1w7f3M48Esxdbq9UBEs3","details":{"endpoint":"GET /health","transactionId":"S5OjTmD6hwpOfrtCpta4adAz"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"7Cii1w7f3M48Esxdbq9UBEs3","details":{"endpoint":"GET /health","transactionId":"S5OjTmD6hwpOfrtCpta4adAz"}}},"contextId":"uukb0kJCpXApBPMeM9WvXhjd"}}
+frontend_1 | 2018-01-31T12:02:05.791908241Z {"@timestamp":"2018-01-31T12:02:05.788+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"vuB9xInQD2N2dE0zruD4eKrA","details":{"endpoint":"GET /v1/variant/test-partner-id/13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36/crop?width=1802&height=1080","transactionId":"ZV84EiahrT1vDW8f7VGpFA91"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"vuB9xInQD2N2dE0zruD4eKrA","details":{"endpoint":"GET /v1/variant/test-partner-id/13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36/crop?width=1802&height=1080","transactionId":"ZV84EiahrT1vDW8f7VGpFA91"}}},"contextId":"QxLMrUEKMjDlSfuPV6dWy_iu"}}
+frontend_1 | 2018-01-31T12:02:05.791939726Z {"@timestamp":"2018-01-31T12:02:05.788+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"5fskblzcFRqAHpF5dKwlHOF7","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"5fskblzcFRqAHpF5dKwlHOF7","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}},"contextId":"QxLMrUEKMjDlSfuPV6dWy_iu"}}
+frontend_1 | 2018-01-31T12:02:05.791949147Z {"@timestamp":"2018-01-31T12:02:05.789+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"5fskblzcFRqAHpF5dKwlHOF7","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"5fskblzcFRqAHpF5dKwlHOF7","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}},"contextId":"QxLMrUEKMjDlSfuPV6dWy_iu"}}
+frontend_1 | 2018-01-31T12:02:05.791967379Z {"@timestamp":"2018-01-31T12:02:05.789+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"vuB9xInQD2N2dE0zruD4eKrA","details":{"endpoint":"GET /v1/variant/test-partner-id/13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36/crop?width=1802&height=1080","transactionId":"ZV84EiahrT1vDW8f7VGpFA91"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"vuB9xInQD2N2dE0zruD4eKrA","details":{"endpoint":"GET /v1/variant/test-partner-id/13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36/crop?width=1802&height=1080","transactionId":"ZV84EiahrT1vDW8f7VGpFA91"}}},"contextId":"QxLMrUEKMjDlSfuPV6dWy_iu"}}
+frontend_1 | 2018-01-31T12:02:05.792244751Z {"@timestamp":"2018-01-31T12:02:05.791+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"TIsaS6yKe2g9Q0RIjc9Hal6x","details":{}},{"name":"VariantRouting","id":"5fskblzcFRqAHpF5dKwlHOF7","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"TIsaS6yKe2g9Q0RIjc9Hal6x","details":{}}},"contextId":"QxLMrUEKMjDlSfuPV6dWy_iu"}}
+frontend_1 | 2018-01-31T12:02:05.793045472Z {"@timestamp":"2018-01-31T12:02:05.792+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"TIsaS6yKe2g9Q0RIjc9Hal6x","details":{}},{"name":"VariantRouting","id":"5fskblzcFRqAHpF5dKwlHOF7","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"TIsaS6yKe2g9Q0RIjc9Hal6x","details":{}}},"contextId":"QxLMrUEKMjDlSfuPV6dWy_iu"}}
+frontend_1 | 2018-01-31T12:02:05.793479066Z {"@timestamp":"2018-01-31T12:02:05.793+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"DKGoQ4b1_xDqeLydrst4itVJ","details":{}},{"name":"VariantRouting","id":"5fskblzcFRqAHpF5dKwlHOF7","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"DKGoQ4b1_xDqeLydrst4itVJ","details":{}}},"contextId":"QxLMrUEKMjDlSfuPV6dWy_iu"}}
+frontend_1 | 2018-01-31T12:02:05.794030014Z {"@timestamp":"2018-01-31T12:02:05.793+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"DKGoQ4b1_xDqeLydrst4itVJ","details":{}},{"name":"VariantRouting","id":"5fskblzcFRqAHpF5dKwlHOF7","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"DKGoQ4b1_xDqeLydrst4itVJ","details":{}}},"contextId":"QxLMrUEKMjDlSfuPV6dWy_iu"}}
+frontend_1 | 2018-01-31T12:02:05.794644077Z {"@timestamp":"2018-01-31T12:02:05.794+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"nnkjzOknsSCRt0ZGYkwvnWMz","details":{"request":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36","dimensions":{"width":1802,"height":1080}}}},{"name":"VariantRouting","id":"5fskblzcFRqAHpF5dKwlHOF7","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"nnkjzOknsSCRt0ZGYkwvnWMz","details":{"request":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36","dimensions":{"width":1802,"height":1080}}}}},"contextId":"QxLMrUEKMjDlSfuPV6dWy_iu"}}
+frontend_1 | 2018-01-31T12:02:05.809175656Z {"@timestamp":"2018-01-31T12:02:05.808+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"nnkjzOknsSCRt0ZGYkwvnWMz","details":{"request":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36","dimensions":{"width":1802,"height":1080}}}},{"name":"VariantRouting","id":"5fskblzcFRqAHpF5dKwlHOF7","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"nnkjzOknsSCRt0ZGYkwvnWMz","details":{"request":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36","dimensions":{"width":1802,"height":1080}}}}},"contextId":"QxLMrUEKMjDlSfuPV6dWy_iu"}}
+frontend_1 | 2018-01-31T12:02:06.099254192Z {"@timestamp":"2018-01-31T12:02:06.098+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"nnkjzOknsSCRt0ZGYkwvnWMz","details":{"request":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36","dimensions":{"width":1802,"height":1080}}}},{"name":"VariantRouting","id":"5fskblzcFRqAHpF5dKwlHOF7","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"QxLMrUEKMjDlSfuPV6dWy_iu"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:13.206961606Z {"@timestamp":"2018-01-31T12:02:13.206+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"oddBzri-edrRLw6dAapltcFG","details":{"endpoint":"GET /health","transactionId":"gHwsh6ZQ7lugmRxKPMHxarMv"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"oddBzri-edrRLw6dAapltcFG","details":{"endpoint":"GET /health","transactionId":"gHwsh6ZQ7lugmRxKPMHxarMv"}}},"contextId":"Zjy8YVRNyK8e0tjsHWiZlDQn"}}
+frontend_1 | 2018-01-31T12:02:13.207754200Z {"@timestamp":"2018-01-31T12:02:13.207+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"oddBzri-edrRLw6dAapltcFG","details":{"endpoint":"GET /health","transactionId":"gHwsh6ZQ7lugmRxKPMHxarMv"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"oddBzri-edrRLw6dAapltcFG","details":{"endpoint":"GET /health","transactionId":"gHwsh6ZQ7lugmRxKPMHxarMv"}}},"contextId":"Zjy8YVRNyK8e0tjsHWiZlDQn"}}
+frontend_1 | 2018-01-31T12:02:13.253561817Z {"@timestamp":"2018-01-31T12:02:13.252+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"KI4Bwb_vihusKtK7dUzWkYVW","details":{"endpoint":"GET /health","transactionId":"0m087a0J2LCKEVIxbUxwr5y3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"KI4Bwb_vihusKtK7dUzWkYVW","details":{"endpoint":"GET /health","transactionId":"0m087a0J2LCKEVIxbUxwr5y3"}}},"contextId":"bOdY-gJIC0gC0GRFpEyXJL3-"}}
+frontend_1 | 2018-01-31T12:02:13.254263308Z {"@timestamp":"2018-01-31T12:02:13.253+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"KI4Bwb_vihusKtK7dUzWkYVW","details":{"endpoint":"GET /health","transactionId":"0m087a0J2LCKEVIxbUxwr5y3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"KI4Bwb_vihusKtK7dUzWkYVW","details":{"endpoint":"GET /health","transactionId":"0m087a0J2LCKEVIxbUxwr5y3"}}},"contextId":"bOdY-gJIC0gC0GRFpEyXJL3-"}}
+frontend_1 | 2018-01-31T12:02:13.261160911Z {"@timestamp":"2018-01-31T12:02:13.260+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"O22lSkFxoNWXqqnQRROcvbnM","details":{"endpoint":"GET /health","transactionId":"l3v63y4mhGy14dVE6KFe0N0l"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"O22lSkFxoNWXqqnQRROcvbnM","details":{"endpoint":"GET /health","transactionId":"l3v63y4mhGy14dVE6KFe0N0l"}}},"contextId":"EoM5nZiBOotDCrwIb-0BTrEl"}}
+frontend_1 | 2018-01-31T12:02:13.261835665Z {"@timestamp":"2018-01-31T12:02:13.261+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"O22lSkFxoNWXqqnQRROcvbnM","details":{"endpoint":"GET /health","transactionId":"l3v63y4mhGy14dVE6KFe0N0l"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"O22lSkFxoNWXqqnQRROcvbnM","details":{"endpoint":"GET /health","transactionId":"l3v63y4mhGy14dVE6KFe0N0l"}}},"contextId":"EoM5nZiBOotDCrwIb-0BTrEl"}}
+frontend_1 | 2018-01-31T12:02:13.264680452Z {"@timestamp":"2018-01-31T12:02:13.264+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"uwVKLLYl8cyfeAZhlgq4OqK_","details":{"endpoint":"GET /health","transactionId":"X6BcFBaU1eLlmHSck12gWkTV"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"uwVKLLYl8cyfeAZhlgq4OqK_","details":{"endpoint":"GET /health","transactionId":"X6BcFBaU1eLlmHSck12gWkTV"}}},"contextId":"5oqk2zg06X3Anu3ADOEX7bz9"}}
+frontend_1 | 2018-01-31T12:02:13.265272198Z {"@timestamp":"2018-01-31T12:02:13.264+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"uwVKLLYl8cyfeAZhlgq4OqK_","details":{"endpoint":"GET /health","transactionId":"X6BcFBaU1eLlmHSck12gWkTV"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"uwVKLLYl8cyfeAZhlgq4OqK_","details":{"endpoint":"GET /health","transactionId":"X6BcFBaU1eLlmHSck12gWkTV"}}},"contextId":"5oqk2zg06X3Anu3ADOEX7bz9"}}
+frontend_1 | 2018-01-31T12:02:13.266057474Z {"@timestamp":"2018-01-31T12:02:13.265+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"dEvp0UJCW5UQRLUzYfnblBTy","details":{"endpoint":"GET /health","transactionId":"lPpf7WHKRMjvk1M4yY6nzT7y"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"dEvp0UJCW5UQRLUzYfnblBTy","details":{"endpoint":"GET /health","transactionId":"lPpf7WHKRMjvk1M4yY6nzT7y"}}},"contextId":"Fop1Uanw5TES_ru5mNeNrm8T"}}
+frontend_1 | 2018-01-31T12:02:13.270526379Z {"@timestamp":"2018-01-31T12:02:13.266+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"dEvp0UJCW5UQRLUzYfnblBTy","details":{"endpoint":"GET /health","transactionId":"lPpf7WHKRMjvk1M4yY6nzT7y"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"dEvp0UJCW5UQRLUzYfnblBTy","details":{"endpoint":"GET /health","transactionId":"lPpf7WHKRMjvk1M4yY6nzT7y"}}},"contextId":"Fop1Uanw5TES_ru5mNeNrm8T"}}
+frontend_1 | 2018-01-31T12:02:13.324051281Z {"@timestamp":"2018-01-31T12:02:13.323+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"Nme48--QsrpnH3mGmcg5He-r","details":{"endpoint":"GET /v1/variant/test-partner-id/3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08/crop?width=220&height=148","transactionId":"Mv4Fn_1Q2s1I6a4G2cJcXBWo"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"Nme48--QsrpnH3mGmcg5He-r","details":{"endpoint":"GET /v1/variant/test-partner-id/3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08/crop?width=220&height=148","transactionId":"Mv4Fn_1Q2s1I6a4G2cJcXBWo"}}},"contextId":"JVmiFE0mZx6KPQ9t0j_YxlsB"}}
+frontend_1 | 2018-01-31T12:02:13.324876365Z {"@timestamp":"2018-01-31T12:02:13.324+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"BDZVn1iFLlTjlTu0Sj6V7r2z","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"BDZVn1iFLlTjlTu0Sj6V7r2z","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}},"contextId":"JVmiFE0mZx6KPQ9t0j_YxlsB"}}
+frontend_1 | 2018-01-31T12:02:13.325954316Z {"@timestamp":"2018-01-31T12:02:13.325+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"ggnfuewLRm8S8g4S8q_63htN","details":{"endpoint":"GET /v1/variant/test-partner-id/A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029/crop?width=160&height=120","transactionId":"GxzeBqu4ioVAV0Ddc_T5akK7"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"ggnfuewLRm8S8g4S8q_63htN","details":{"endpoint":"GET /v1/variant/test-partner-id/A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029/crop?width=160&height=120","transactionId":"GxzeBqu4ioVAV0Ddc_T5akK7"}}},"contextId":"BFTueoaEId34ivwJbSCRP-rk"}}
+frontend_1 | 2018-01-31T12:02:13.326359799Z {"@timestamp":"2018-01-31T12:02:13.324+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"BDZVn1iFLlTjlTu0Sj6V7r2z","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"BDZVn1iFLlTjlTu0Sj6V7r2z","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}},"contextId":"JVmiFE0mZx6KPQ9t0j_YxlsB"}}
+frontend_1 | 2018-01-31T12:02:13.326701107Z {"@timestamp":"2018-01-31T12:02:13.326+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"nFucB55LVpK93Ytc0ljZRCAy","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"nFucB55LVpK93Ytc0ljZRCAy","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}},"contextId":"BFTueoaEId34ivwJbSCRP-rk"}}
+frontend_1 | 2018-01-31T12:02:13.326906699Z {"@timestamp":"2018-01-31T12:02:13.326+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"Nme48--QsrpnH3mGmcg5He-r","details":{"endpoint":"GET /v1/variant/test-partner-id/3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08/crop?width=220&height=148","transactionId":"Mv4Fn_1Q2s1I6a4G2cJcXBWo"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"Nme48--QsrpnH3mGmcg5He-r","details":{"endpoint":"GET /v1/variant/test-partner-id/3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08/crop?width=220&height=148","transactionId":"Mv4Fn_1Q2s1I6a4G2cJcXBWo"}}},"contextId":"JVmiFE0mZx6KPQ9t0j_YxlsB"}}
+frontend_1 | 2018-01-31T12:02:13.327245079Z {"@timestamp":"2018-01-31T12:02:13.326+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"nFucB55LVpK93Ytc0ljZRCAy","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"nFucB55LVpK93Ytc0ljZRCAy","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}},"contextId":"BFTueoaEId34ivwJbSCRP-rk"}}
+frontend_1 | 2018-01-31T12:02:13.327808749Z {"@timestamp":"2018-01-31T12:02:13.327+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"ggnfuewLRm8S8g4S8q_63htN","details":{"endpoint":"GET /v1/variant/test-partner-id/A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029/crop?width=160&height=120","transactionId":"GxzeBqu4ioVAV0Ddc_T5akK7"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"ggnfuewLRm8S8g4S8q_63htN","details":{"endpoint":"GET /v1/variant/test-partner-id/A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029/crop?width=160&height=120","transactionId":"GxzeBqu4ioVAV0Ddc_T5akK7"}}},"contextId":"BFTueoaEId34ivwJbSCRP-rk"}}
+frontend_1 | 2018-01-31T12:02:13.328169370Z {"@timestamp":"2018-01-31T12:02:13.327+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"sl1JLHhRarrn3ad9_w4gqLGs","details":{"endpoint":"GET /v1/variant/test-partner-id/0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B/crop?width=160&height=108","transactionId":"YfzRSDppB8PigKdfZVCF0oYF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"sl1JLHhRarrn3ad9_w4gqLGs","details":{"endpoint":"GET /v1/variant/test-partner-id/0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B/crop?width=160&height=108","transactionId":"YfzRSDppB8PigKdfZVCF0oYF"}}},"contextId":"HJjK6CNQwOpPbap6CVStWZO8"}}
+frontend_1 | 2018-01-31T12:02:13.329133354Z {"@timestamp":"2018-01-31T12:02:13.328+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"Zrgs9n6eHSA6NQ_4PCEqQ519","details":{}},{"name":"VariantRouting","id":"nFucB55LVpK93Ytc0ljZRCAy","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"Zrgs9n6eHSA6NQ_4PCEqQ519","details":{}}},"contextId":"BFTueoaEId34ivwJbSCRP-rk"}}
+frontend_1 | 2018-01-31T12:02:13.329527910Z {"@timestamp":"2018-01-31T12:02:13.328+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"e_UsC7zJ-Zo67PbAPZ_HV4tT","details":{"partnerId":"test-partner-id","masterId":"0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"e_UsC7zJ-Zo67PbAPZ_HV4tT","details":{"partnerId":"test-partner-id","masterId":"0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B"}}},"contextId":"HJjK6CNQwOpPbap6CVStWZO8"}}
+frontend_1 | 2018-01-31T12:02:13.329983200Z {"@timestamp":"2018-01-31T12:02:13.329+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"Zrgs9n6eHSA6NQ_4PCEqQ519","details":{}},{"name":"VariantRouting","id":"nFucB55LVpK93Ytc0ljZRCAy","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"Zrgs9n6eHSA6NQ_4PCEqQ519","details":{}}},"contextId":"BFTueoaEId34ivwJbSCRP-rk"}}
+frontend_1 | 2018-01-31T12:02:13.330249179Z {"@timestamp":"2018-01-31T12:02:13.329+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"e_UsC7zJ-Zo67PbAPZ_HV4tT","details":{"partnerId":"test-partner-id","masterId":"0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"e_UsC7zJ-Zo67PbAPZ_HV4tT","details":{"partnerId":"test-partner-id","masterId":"0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B"}}},"contextId":"HJjK6CNQwOpPbap6CVStWZO8"}}
+frontend_1 | 2018-01-31T12:02:13.331195227Z {"@timestamp":"2018-01-31T12:02:13.330+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"XwNz5SQvSv33zIJ0h3Wld7Wu","details":{}},{"name":"VariantRouting","id":"nFucB55LVpK93Ytc0ljZRCAy","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"XwNz5SQvSv33zIJ0h3Wld7Wu","details":{}}},"contextId":"BFTueoaEId34ivwJbSCRP-rk"}}
+frontend_1 | 2018-01-31T12:02:13.331398256Z {"@timestamp":"2018-01-31T12:02:13.330+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"sl1JLHhRarrn3ad9_w4gqLGs","details":{"endpoint":"GET /v1/variant/test-partner-id/0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B/crop?width=160&height=108","transactionId":"YfzRSDppB8PigKdfZVCF0oYF"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"sl1JLHhRarrn3ad9_w4gqLGs","details":{"endpoint":"GET /v1/variant/test-partner-id/0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B/crop?width=160&height=108","transactionId":"YfzRSDppB8PigKdfZVCF0oYF"}}},"contextId":"HJjK6CNQwOpPbap6CVStWZO8"}}
+frontend_1 | 2018-01-31T12:02:13.331673758Z {"@timestamp":"2018-01-31T12:02:13.331+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"XwNz5SQvSv33zIJ0h3Wld7Wu","details":{}},{"name":"VariantRouting","id":"nFucB55LVpK93Ytc0ljZRCAy","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"XwNz5SQvSv33zIJ0h3Wld7Wu","details":{}}},"contextId":"BFTueoaEId34ivwJbSCRP-rk"}}
+frontend_1 | 2018-01-31T12:02:13.332173030Z {"@timestamp":"2018-01-31T12:02:13.331+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"vrZQ9Rnh5m4Yho4vY2gz4V2z","details":{}},{"name":"VariantRouting","id":"BDZVn1iFLlTjlTu0Sj6V7r2z","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"vrZQ9Rnh5m4Yho4vY2gz4V2z","details":{}}},"contextId":"JVmiFE0mZx6KPQ9t0j_YxlsB"}}
+frontend_1 | 2018-01-31T12:02:13.332385836Z {"@timestamp":"2018-01-31T12:02:13.331+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"qKWMfhhsV5BPZUZN2rhwBY-n","details":{"request":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029","dimensions":{"width":160,"height":120}}}},{"name":"VariantRouting","id":"nFucB55LVpK93Ytc0ljZRCAy","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"qKWMfhhsV5BPZUZN2rhwBY-n","details":{"request":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029","dimensions":{"width":160,"height":120}}}}},"contextId":"BFTueoaEId34ivwJbSCRP-rk"}}
+frontend_1 | 2018-01-31T12:02:13.332766536Z {"@timestamp":"2018-01-31T12:02:13.332+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"jMUK1LMK1N9po8TRdKgtyvhl","details":{}},{"name":"VariantRouting","id":"e_UsC7zJ-Zo67PbAPZ_HV4tT","details":{"partnerId":"test-partner-id","masterId":"0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"jMUK1LMK1N9po8TRdKgtyvhl","details":{}}},"contextId":"HJjK6CNQwOpPbap6CVStWZO8"}}
+frontend_1 | 2018-01-31T12:02:13.332993783Z {"@timestamp":"2018-01-31T12:02:13.332+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"vrZQ9Rnh5m4Yho4vY2gz4V2z","details":{}},{"name":"VariantRouting","id":"BDZVn1iFLlTjlTu0Sj6V7r2z","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"vrZQ9Rnh5m4Yho4vY2gz4V2z","details":{}}},"contextId":"JVmiFE0mZx6KPQ9t0j_YxlsB"}}
+frontend_1 | 2018-01-31T12:02:13.333491245Z {"@timestamp":"2018-01-31T12:02:13.333+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"jMUK1LMK1N9po8TRdKgtyvhl","details":{}},{"name":"VariantRouting","id":"e_UsC7zJ-Zo67PbAPZ_HV4tT","details":{"partnerId":"test-partner-id","masterId":"0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"jMUK1LMK1N9po8TRdKgtyvhl","details":{}}},"contextId":"HJjK6CNQwOpPbap6CVStWZO8"}}
+frontend_1 | 2018-01-31T12:02:13.333591214Z {"@timestamp":"2018-01-31T12:02:13.333+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"J7SmpLFa67G4CtQbd0BN-J7U","details":{}},{"name":"VariantRouting","id":"BDZVn1iFLlTjlTu0Sj6V7r2z","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"J7SmpLFa67G4CtQbd0BN-J7U","details":{}}},"contextId":"JVmiFE0mZx6KPQ9t0j_YxlsB"}}
+frontend_1 | 2018-01-31T12:02:13.334047575Z {"@timestamp":"2018-01-31T12:02:13.333+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"J7SmpLFa67G4CtQbd0BN-J7U","details":{}},{"name":"VariantRouting","id":"BDZVn1iFLlTjlTu0Sj6V7r2z","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"J7SmpLFa67G4CtQbd0BN-J7U","details":{}}},"contextId":"JVmiFE0mZx6KPQ9t0j_YxlsB"}}
+frontend_1 | 2018-01-31T12:02:13.334570316Z {"@timestamp":"2018-01-31T12:02:13.333+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"QvXU2cV7_-veHygAHQLkJRYn","details":{}},{"name":"VariantRouting","id":"e_UsC7zJ-Zo67PbAPZ_HV4tT","details":{"partnerId":"test-partner-id","masterId":"0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"QvXU2cV7_-veHygAHQLkJRYn","details":{}}},"contextId":"HJjK6CNQwOpPbap6CVStWZO8"}}
+frontend_1 | 2018-01-31T12:02:13.334940204Z {"@timestamp":"2018-01-31T12:02:13.334+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"o-xBobGBBzBCE8OwmAOOsAM4","details":{"endpoint":"GET /v1/variant/test-partner-id/1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50/crop?width=100&height=100","transactionId":"JPiVmdQylG8UbpO09b4Y6D6U"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"o-xBobGBBzBCE8OwmAOOsAM4","details":{"endpoint":"GET /v1/variant/test-partner-id/1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50/crop?width=100&height=100","transactionId":"JPiVmdQylG8UbpO09b4Y6D6U"}}},"contextId":"_Qx6Ik1vHBWv5W5gfIvBza2Z"}}
+frontend_1 | 2018-01-31T12:02:13.335189085Z {"@timestamp":"2018-01-31T12:02:13.334+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"aJiH4L3ooncaGKyjZ-KDbFe_","details":{"request":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08","dimensions":{"width":220,"height":148}}}},{"name":"VariantRouting","id":"BDZVn1iFLlTjlTu0Sj6V7r2z","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"aJiH4L3ooncaGKyjZ-KDbFe_","details":{"request":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08","dimensions":{"width":220,"height":148}}}}},"contextId":"JVmiFE0mZx6KPQ9t0j_YxlsB"}}
+frontend_1 | 2018-01-31T12:02:13.335531992Z {"@timestamp":"2018-01-31T12:02:13.335+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"qKWMfhhsV5BPZUZN2rhwBY-n","details":{"request":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029","dimensions":{"width":160,"height":120}}}},{"name":"VariantRouting","id":"nFucB55LVpK93Ytc0ljZRCAy","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"qKWMfhhsV5BPZUZN2rhwBY-n","details":{"request":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029","dimensions":{"width":160,"height":120}}}}},"contextId":"BFTueoaEId34ivwJbSCRP-rk"}}
+frontend_1 | 2018-01-31T12:02:13.335736366Z {"@timestamp":"2018-01-31T12:02:13.334+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"QvXU2cV7_-veHygAHQLkJRYn","details":{}},{"name":"VariantRouting","id":"e_UsC7zJ-Zo67PbAPZ_HV4tT","details":{"partnerId":"test-partner-id","masterId":"0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"QvXU2cV7_-veHygAHQLkJRYn","details":{}}},"contextId":"HJjK6CNQwOpPbap6CVStWZO8"}}
+frontend_1 | 2018-01-31T12:02:13.336137176Z {"@timestamp":"2018-01-31T12:02:13.335+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"qqseE0oSJFhkPloHcCdwkRT4","details":{"partnerId":"test-partner-id","masterId":"1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"qqseE0oSJFhkPloHcCdwkRT4","details":{"partnerId":"test-partner-id","masterId":"1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50"}}},"contextId":"_Qx6Ik1vHBWv5W5gfIvBza2Z"}}
+frontend_1 | 2018-01-31T12:02:13.336309048Z {"@timestamp":"2018-01-31T12:02:13.335+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"djFVG68yOemhxZYLgIJRBP8Q","details":{"request":{"partnerId":"test-partner-id","masterId":"0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"e_UsC7zJ-Zo67PbAPZ_HV4tT","details":{"partnerId":"test-partner-id","masterId":"0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"djFVG68yOemhxZYLgIJRBP8Q","details":{"request":{"partnerId":"test-partner-id","masterId":"0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B","dimensions":{"width":160,"height":108}}}}},"contextId":"HJjK6CNQwOpPbap6CVStWZO8"}}
+frontend_1 | 2018-01-31T12:02:13.347522103Z {"@timestamp":"2018-01-31T12:02:13.346+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"KMjBtn149UURQ11b397dD2Ov","details":{"endpoint":"GET /v1/variant/test-partner-id/C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA/crop?width=1024&height=768","transactionId":"DQrxNcPN_1yaALKuA31AdvfN"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"KMjBtn149UURQ11b397dD2Ov","details":{"endpoint":"GET /v1/variant/test-partner-id/C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA/crop?width=1024&height=768","transactionId":"DQrxNcPN_1yaALKuA31AdvfN"}}},"contextId":"9m9ukC06uPaCzAhIJZbwMRnX"}}
+frontend_1 | 2018-01-31T12:02:13.348698465Z {"@timestamp":"2018-01-31T12:02:13.347+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"S2pQMrbVxmGwkCLA10GJXiGx","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"S2pQMrbVxmGwkCLA10GJXiGx","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}},"contextId":"9m9ukC06uPaCzAhIJZbwMRnX"}}
+frontend_1 | 2018-01-31T12:02:13.348732708Z {"@timestamp":"2018-01-31T12:02:13.348+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"djFVG68yOemhxZYLgIJRBP8Q","details":{"request":{"partnerId":"test-partner-id","masterId":"0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"e_UsC7zJ-Zo67PbAPZ_HV4tT","details":{"partnerId":"test-partner-id","masterId":"0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"djFVG68yOemhxZYLgIJRBP8Q","details":{"request":{"partnerId":"test-partner-id","masterId":"0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B","dimensions":{"width":160,"height":108}}}}},"contextId":"HJjK6CNQwOpPbap6CVStWZO8"}}
+frontend_1 | 2018-01-31T12:02:13.351202782Z {"@timestamp":"2018-01-31T12:02:13.348+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"S2pQMrbVxmGwkCLA10GJXiGx","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"S2pQMrbVxmGwkCLA10GJXiGx","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}},"contextId":"9m9ukC06uPaCzAhIJZbwMRnX"}}
+frontend_1 | 2018-01-31T12:02:13.354497892Z {"@timestamp":"2018-01-31T12:02:13.351+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"aJiH4L3ooncaGKyjZ-KDbFe_","details":{"request":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08","dimensions":{"width":220,"height":148}}}},{"name":"VariantRouting","id":"BDZVn1iFLlTjlTu0Sj6V7r2z","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"aJiH4L3ooncaGKyjZ-KDbFe_","details":{"request":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08","dimensions":{"width":220,"height":148}}}}},"contextId":"JVmiFE0mZx6KPQ9t0j_YxlsB"}}
+frontend_1 | 2018-01-31T12:02:13.355728018Z {"@timestamp":"2018-01-31T12:02:13.352+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"KMjBtn149UURQ11b397dD2Ov","details":{"endpoint":"GET /v1/variant/test-partner-id/C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA/crop?width=1024&height=768","transactionId":"DQrxNcPN_1yaALKuA31AdvfN"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"KMjBtn149UURQ11b397dD2Ov","details":{"endpoint":"GET /v1/variant/test-partner-id/C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA/crop?width=1024&height=768","transactionId":"DQrxNcPN_1yaALKuA31AdvfN"}}},"contextId":"9m9ukC06uPaCzAhIJZbwMRnX"}}
+frontend_1 | 2018-01-31T12:02:13.357202725Z {"@timestamp":"2018-01-31T12:02:13.356+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"-uj5Ucpy5eUYG5MVcZ_rzdDh","details":{}},{"name":"VariantRouting","id":"S2pQMrbVxmGwkCLA10GJXiGx","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"-uj5Ucpy5eUYG5MVcZ_rzdDh","details":{}}},"contextId":"9m9ukC06uPaCzAhIJZbwMRnX"}}
+frontend_1 | 2018-01-31T12:02:13.357941008Z {"@timestamp":"2018-01-31T12:02:13.357+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"-uj5Ucpy5eUYG5MVcZ_rzdDh","details":{}},{"name":"VariantRouting","id":"S2pQMrbVxmGwkCLA10GJXiGx","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"-uj5Ucpy5eUYG5MVcZ_rzdDh","details":{}}},"contextId":"9m9ukC06uPaCzAhIJZbwMRnX"}}
+frontend_1 | 2018-01-31T12:02:13.358534155Z {"@timestamp":"2018-01-31T12:02:13.358+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"V9UPsKI1r0DDhEjzhzF58eLh","details":{}},{"name":"VariantRouting","id":"S2pQMrbVxmGwkCLA10GJXiGx","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"V9UPsKI1r0DDhEjzhzF58eLh","details":{}}},"contextId":"9m9ukC06uPaCzAhIJZbwMRnX"}}
+frontend_1 | 2018-01-31T12:02:13.358997677Z {"@timestamp":"2018-01-31T12:02:13.358+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"V9UPsKI1r0DDhEjzhzF58eLh","details":{}},{"name":"VariantRouting","id":"S2pQMrbVxmGwkCLA10GJXiGx","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"V9UPsKI1r0DDhEjzhzF58eLh","details":{}}},"contextId":"9m9ukC06uPaCzAhIJZbwMRnX"}}
+frontend_1 | 2018-01-31T12:02:13.370337837Z {"@timestamp":"2018-01-31T12:02:13.369+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"Nf60KR2RleFbI-l_DN0tyazo","details":{"request":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"S2pQMrbVxmGwkCLA10GJXiGx","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"Nf60KR2RleFbI-l_DN0tyazo","details":{"request":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA","dimensions":{"width":1024,"height":768}}}}},"contextId":"9m9ukC06uPaCzAhIJZbwMRnX"}}
+frontend_1 | 2018-01-31T12:02:13.370397879Z {"@timestamp":"2018-01-31T12:02:13.336+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"qqseE0oSJFhkPloHcCdwkRT4","details":{"partnerId":"test-partner-id","masterId":"1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"qqseE0oSJFhkPloHcCdwkRT4","details":{"partnerId":"test-partner-id","masterId":"1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50"}}},"contextId":"_Qx6Ik1vHBWv5W5gfIvBza2Z"}}
+frontend_1 | 2018-01-31T12:02:13.371649247Z {"@timestamp":"2018-01-31T12:02:13.371+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"o-xBobGBBzBCE8OwmAOOsAM4","details":{"endpoint":"GET /v1/variant/test-partner-id/1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50/crop?width=100&height=100","transactionId":"JPiVmdQylG8UbpO09b4Y6D6U"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"o-xBobGBBzBCE8OwmAOOsAM4","details":{"endpoint":"GET /v1/variant/test-partner-id/1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50/crop?width=100&height=100","transactionId":"JPiVmdQylG8UbpO09b4Y6D6U"}}},"contextId":"_Qx6Ik1vHBWv5W5gfIvBza2Z"}}
+frontend_1 | 2018-01-31T12:02:13.388979174Z {"@timestamp":"2018-01-31T12:02:13.388+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"QwprEqJYQg-oeJocalM_t8_B","details":{}},{"name":"VariantRouting","id":"qqseE0oSJFhkPloHcCdwkRT4","details":{"partnerId":"test-partner-id","masterId":"1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"QwprEqJYQg-oeJocalM_t8_B","details":{}}},"contextId":"_Qx6Ik1vHBWv5W5gfIvBza2Z"}}
+frontend_1 | 2018-01-31T12:02:13.389377026Z {"@timestamp":"2018-01-31T12:02:13.389+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"Nf60KR2RleFbI-l_DN0tyazo","details":{"request":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"S2pQMrbVxmGwkCLA10GJXiGx","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"Nf60KR2RleFbI-l_DN0tyazo","details":{"request":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA","dimensions":{"width":1024,"height":768}}}}},"contextId":"9m9ukC06uPaCzAhIJZbwMRnX"}}
+frontend_1 | 2018-01-31T12:02:13.389647014Z {"@timestamp":"2018-01-31T12:02:13.389+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"QwprEqJYQg-oeJocalM_t8_B","details":{}},{"name":"VariantRouting","id":"qqseE0oSJFhkPloHcCdwkRT4","details":{"partnerId":"test-partner-id","masterId":"1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"QwprEqJYQg-oeJocalM_t8_B","details":{}}},"contextId":"_Qx6Ik1vHBWv5W5gfIvBza2Z"}}
+frontend_1 | 2018-01-31T12:02:13.391084816Z {"@timestamp":"2018-01-31T12:02:13.389+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"aWbzdDiItSN0wFjfar34smuG","details":{}},{"name":"VariantRouting","id":"qqseE0oSJFhkPloHcCdwkRT4","details":{"partnerId":"test-partner-id","masterId":"1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"aWbzdDiItSN0wFjfar34smuG","details":{}}},"contextId":"_Qx6Ik1vHBWv5W5gfIvBza2Z"}}
+frontend_1 | 2018-01-31T12:02:13.391793991Z {"@timestamp":"2018-01-31T12:02:13.391+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"aWbzdDiItSN0wFjfar34smuG","details":{}},{"name":"VariantRouting","id":"qqseE0oSJFhkPloHcCdwkRT4","details":{"partnerId":"test-partner-id","masterId":"1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"aWbzdDiItSN0wFjfar34smuG","details":{}}},"contextId":"_Qx6Ik1vHBWv5W5gfIvBza2Z"}}
+frontend_1 | 2018-01-31T12:02:13.392273662Z {"@timestamp":"2018-01-31T12:02:13.392+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"IuI0F1_-ngvTyaVcIDDvCvr6","details":{"request":{"partnerId":"test-partner-id","masterId":"1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50","dimensions":{"width":100,"height":100}}}},{"name":"VariantRouting","id":"qqseE0oSJFhkPloHcCdwkRT4","details":{"partnerId":"test-partner-id","masterId":"1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"IuI0F1_-ngvTyaVcIDDvCvr6","details":{"request":{"partnerId":"test-partner-id","masterId":"1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50","dimensions":{"width":100,"height":100}}}}},"contextId":"_Qx6Ik1vHBWv5W5gfIvBza2Z"}}
+frontend_1 | 2018-01-31T12:02:13.394674408Z {"@timestamp":"2018-01-31T12:02:13.394+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"IuI0F1_-ngvTyaVcIDDvCvr6","details":{"request":{"partnerId":"test-partner-id","masterId":"1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50","dimensions":{"width":100,"height":100}}}},{"name":"VariantRouting","id":"qqseE0oSJFhkPloHcCdwkRT4","details":{"partnerId":"test-partner-id","masterId":"1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"IuI0F1_-ngvTyaVcIDDvCvr6","details":{"request":{"partnerId":"test-partner-id","masterId":"1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50","dimensions":{"width":100,"height":100}}}}},"contextId":"_Qx6Ik1vHBWv5W5gfIvBza2Z"}}
+frontend_1 | 2018-01-31T12:02:13.510129000Z {"@timestamp":"2018-01-31T12:02:13.508+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"QkVZ82XLV09FsnwxP87yBh0v","details":{"endpoint":"GET /health","transactionId":"3zmkMTnvt1lvq1heVQn8Vw68"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"QkVZ82XLV09FsnwxP87yBh0v","details":{"endpoint":"GET /health","transactionId":"3zmkMTnvt1lvq1heVQn8Vw68"}}},"contextId":"xDgqY27dpepEQX8S9-puZqLg"}}
+frontend_1 | 2018-01-31T12:02:13.510169651Z {"@timestamp":"2018-01-31T12:02:13.508+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"QkVZ82XLV09FsnwxP87yBh0v","details":{"endpoint":"GET /health","transactionId":"3zmkMTnvt1lvq1heVQn8Vw68"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"QkVZ82XLV09FsnwxP87yBh0v","details":{"endpoint":"GET /health","transactionId":"3zmkMTnvt1lvq1heVQn8Vw68"}}},"contextId":"xDgqY27dpepEQX8S9-puZqLg"}}
+frontend_1 | 2018-01-31T12:02:13.535450507Z {"@timestamp":"2018-01-31T12:02:13.534+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"6_e_GttChuEFMG_YqCc5-1pj","details":{"endpoint":"GET /v1/variant/test-partner-id/33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117/crop?width=120&height=80","transactionId":"wX_PEJqOSCsd1fJQSFE7yidL"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"6_e_GttChuEFMG_YqCc5-1pj","details":{"endpoint":"GET /v1/variant/test-partner-id/33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117/crop?width=120&height=80","transactionId":"wX_PEJqOSCsd1fJQSFE7yidL"}}},"contextId":"QeAOmKfnhQXNeEemyWWJUuAx"}}
+frontend_1 | 2018-01-31T12:02:13.539776489Z {"@timestamp":"2018-01-31T12:02:13.538+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"XGww6LSwW5rx7iCDJ__u_uqr","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"XGww6LSwW5rx7iCDJ__u_uqr","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}},"contextId":"QeAOmKfnhQXNeEemyWWJUuAx"}}
+frontend_1 | 2018-01-31T12:02:13.541337362Z {"@timestamp":"2018-01-31T12:02:13.540+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"XGww6LSwW5rx7iCDJ__u_uqr","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"XGww6LSwW5rx7iCDJ__u_uqr","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}},"contextId":"QeAOmKfnhQXNeEemyWWJUuAx"}}
+frontend_1 | 2018-01-31T12:02:13.549846049Z {"@timestamp":"2018-01-31T12:02:13.549+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"6_e_GttChuEFMG_YqCc5-1pj","details":{"endpoint":"GET /v1/variant/test-partner-id/33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117/crop?width=120&height=80","transactionId":"wX_PEJqOSCsd1fJQSFE7yidL"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"6_e_GttChuEFMG_YqCc5-1pj","details":{"endpoint":"GET /v1/variant/test-partner-id/33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117/crop?width=120&height=80","transactionId":"wX_PEJqOSCsd1fJQSFE7yidL"}}},"contextId":"QeAOmKfnhQXNeEemyWWJUuAx"}}
+frontend_1 | 2018-01-31T12:02:13.552100600Z {"@timestamp":"2018-01-31T12:02:13.551+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"H-7Hmr2yReA4t0JhLv3V3QOh","details":{}},{"name":"VariantRouting","id":"XGww6LSwW5rx7iCDJ__u_uqr","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"H-7Hmr2yReA4t0JhLv3V3QOh","details":{}}},"contextId":"QeAOmKfnhQXNeEemyWWJUuAx"}}
+frontend_1 | 2018-01-31T12:02:13.552915769Z {"@timestamp":"2018-01-31T12:02:13.552+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"H-7Hmr2yReA4t0JhLv3V3QOh","details":{}},{"name":"VariantRouting","id":"XGww6LSwW5rx7iCDJ__u_uqr","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"H-7Hmr2yReA4t0JhLv3V3QOh","details":{}}},"contextId":"QeAOmKfnhQXNeEemyWWJUuAx"}}
+frontend_1 | 2018-01-31T12:02:13.553590872Z {"@timestamp":"2018-01-31T12:02:13.553+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"m7T_A6pJIvqOssZm9gE1bFos","details":{}},{"name":"VariantRouting","id":"XGww6LSwW5rx7iCDJ__u_uqr","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"m7T_A6pJIvqOssZm9gE1bFos","details":{}}},"contextId":"QeAOmKfnhQXNeEemyWWJUuAx"}}
+frontend_1 | 2018-01-31T12:02:13.554432859Z {"@timestamp":"2018-01-31T12:02:13.553+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"m7T_A6pJIvqOssZm9gE1bFos","details":{}},{"name":"VariantRouting","id":"XGww6LSwW5rx7iCDJ__u_uqr","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"m7T_A6pJIvqOssZm9gE1bFos","details":{}}},"contextId":"QeAOmKfnhQXNeEemyWWJUuAx"}}
+frontend_1 | 2018-01-31T12:02:13.555467110Z {"@timestamp":"2018-01-31T12:02:13.554+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"G2Dcuku8owiYAo77vXMYS-Sj","details":{"request":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117","dimensions":{"width":120,"height":80}}}},{"name":"VariantRouting","id":"XGww6LSwW5rx7iCDJ__u_uqr","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"G2Dcuku8owiYAo77vXMYS-Sj","details":{"request":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117","dimensions":{"width":120,"height":80}}}}},"contextId":"QeAOmKfnhQXNeEemyWWJUuAx"}}
+frontend_1 | 2018-01-31T12:02:13.568424653Z {"@timestamp":"2018-01-31T12:02:13.568+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"G2Dcuku8owiYAo77vXMYS-Sj","details":{"request":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117","dimensions":{"width":120,"height":80}}}},{"name":"VariantRouting","id":"XGww6LSwW5rx7iCDJ__u_uqr","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"G2Dcuku8owiYAo77vXMYS-Sj","details":{"request":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117","dimensions":{"width":120,"height":80}}}}},"contextId":"QeAOmKfnhQXNeEemyWWJUuAx"}}
+frontend_1 | 2018-01-31T12:02:13.638888649Z {"@timestamp":"2018-01-31T12:02:13.638+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"qKWMfhhsV5BPZUZN2rhwBY-n","details":{"request":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029","dimensions":{"width":160,"height":120}}}},{"name":"VariantRouting","id":"nFucB55LVpK93Ytc0ljZRCAy","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"BFTueoaEId34ivwJbSCRP-rk"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:13.653822020Z {"@timestamp":"2018-01-31T12:02:13.653+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"aJiH4L3ooncaGKyjZ-KDbFe_","details":{"request":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08","dimensions":{"width":220,"height":148}}}},{"name":"VariantRouting","id":"BDZVn1iFLlTjlTu0Sj6V7r2z","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"JVmiFE0mZx6KPQ9t0j_YxlsB"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:13.654405338Z {"@timestamp":"2018-01-31T12:02:13.652+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"djFVG68yOemhxZYLgIJRBP8Q","details":{"request":{"partnerId":"test-partner-id","masterId":"0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"e_UsC7zJ-Zo67PbAPZ_HV4tT","details":{"partnerId":"test-partner-id","masterId":"0DDDE2CEF98EDDACA6EC669E9DF36212E4D3844337DE69419BB8F616D231471B"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"HJjK6CNQwOpPbap6CVStWZO8"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:13.679946839Z {"@timestamp":"2018-01-31T12:02:13.679+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"Nf60KR2RleFbI-l_DN0tyazo","details":{"request":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"S2pQMrbVxmGwkCLA10GJXiGx","details":{"partnerId":"test-partner-id","masterId":"C37F49DA0BC90B9764149F04EE2E29A6EC8CE4A76B228013694D51C32D5082BA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"9m9ukC06uPaCzAhIJZbwMRnX"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:13.699108050Z {"@timestamp":"2018-01-31T12:02:13.698+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"IuI0F1_-ngvTyaVcIDDvCvr6","details":{"request":{"partnerId":"test-partner-id","masterId":"1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50","dimensions":{"width":100,"height":100}}}},{"name":"VariantRouting","id":"qqseE0oSJFhkPloHcCdwkRT4","details":{"partnerId":"test-partner-id","masterId":"1339C9DD39BAA909B06FA89F8301BC5E0A6FC4196626BA2774A3D9CBA631AC50"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"_Qx6Ik1vHBWv5W5gfIvBza2Z"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:13.870139334Z {"@timestamp":"2018-01-31T12:02:13.869+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"G2Dcuku8owiYAo77vXMYS-Sj","details":{"request":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117","dimensions":{"width":120,"height":80}}}},{"name":"VariantRouting","id":"XGww6LSwW5rx7iCDJ__u_uqr","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"QeAOmKfnhQXNeEemyWWJUuAx"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:15.564885590Z {"@timestamp":"2018-01-31T12:02:15.564+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"1rt9kUYSlpxmetQyJ7gPt6XF","details":{"endpoint":"GET /health","transactionId":"nYtUWcuWzusOeeNHX9HApm3M"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"1rt9kUYSlpxmetQyJ7gPt6XF","details":{"endpoint":"GET /health","transactionId":"nYtUWcuWzusOeeNHX9HApm3M"}}},"contextId":"jdm33aMcNzudWjC_oihaDDdT"}}
+frontend_1 | 2018-01-31T12:02:15.565627445Z {"@timestamp":"2018-01-31T12:02:15.565+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"1rt9kUYSlpxmetQyJ7gPt6XF","details":{"endpoint":"GET /health","transactionId":"nYtUWcuWzusOeeNHX9HApm3M"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"1rt9kUYSlpxmetQyJ7gPt6XF","details":{"endpoint":"GET /health","transactionId":"nYtUWcuWzusOeeNHX9HApm3M"}}},"contextId":"jdm33aMcNzudWjC_oihaDDdT"}}
+frontend_1 | 2018-01-31T12:02:15.655351249Z {"@timestamp":"2018-01-31T12:02:15.654+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"oII9Kk8E5W6_pgupXKjCcaru","details":{"endpoint":"GET /v1/variant/test-partner-id/C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47/crop?width=160&height=120","transactionId":"ZfwgxekJS0zIHpCm2yKSnJUD"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"oII9Kk8E5W6_pgupXKjCcaru","details":{"endpoint":"GET /v1/variant/test-partner-id/C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47/crop?width=160&height=120","transactionId":"ZfwgxekJS0zIHpCm2yKSnJUD"}}},"contextId":"Im783g2mge3rD4Y43lXLFeOO"}}
+frontend_1 | 2018-01-31T12:02:15.655904064Z {"@timestamp":"2018-01-31T12:02:15.655+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"jl8WWpMNHdy2q0bUYpDKmED6","details":{"partnerId":"test-partner-id","masterId":"C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"jl8WWpMNHdy2q0bUYpDKmED6","details":{"partnerId":"test-partner-id","masterId":"C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47"}}},"contextId":"Im783g2mge3rD4Y43lXLFeOO"}}
+frontend_1 | 2018-01-31T12:02:15.656239942Z {"@timestamp":"2018-01-31T12:02:15.655+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"jl8WWpMNHdy2q0bUYpDKmED6","details":{"partnerId":"test-partner-id","masterId":"C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"jl8WWpMNHdy2q0bUYpDKmED6","details":{"partnerId":"test-partner-id","masterId":"C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47"}}},"contextId":"Im783g2mge3rD4Y43lXLFeOO"}}
+frontend_1 | 2018-01-31T12:02:15.656495506Z {"@timestamp":"2018-01-31T12:02:15.656+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"oII9Kk8E5W6_pgupXKjCcaru","details":{"endpoint":"GET /v1/variant/test-partner-id/C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47/crop?width=160&height=120","transactionId":"ZfwgxekJS0zIHpCm2yKSnJUD"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"oII9Kk8E5W6_pgupXKjCcaru","details":{"endpoint":"GET /v1/variant/test-partner-id/C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47/crop?width=160&height=120","transactionId":"ZfwgxekJS0zIHpCm2yKSnJUD"}}},"contextId":"Im783g2mge3rD4Y43lXLFeOO"}}
+frontend_1 | 2018-01-31T12:02:15.658815927Z {"@timestamp":"2018-01-31T12:02:15.657+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"2YvS0mw82fU8NMkcZSiYkADd","details":{}},{"name":"VariantRouting","id":"jl8WWpMNHdy2q0bUYpDKmED6","details":{"partnerId":"test-partner-id","masterId":"C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"2YvS0mw82fU8NMkcZSiYkADd","details":{}}},"contextId":"Im783g2mge3rD4Y43lXLFeOO"}}
+frontend_1 | 2018-01-31T12:02:15.659901220Z {"@timestamp":"2018-01-31T12:02:15.659+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"2YvS0mw82fU8NMkcZSiYkADd","details":{}},{"name":"VariantRouting","id":"jl8WWpMNHdy2q0bUYpDKmED6","details":{"partnerId":"test-partner-id","masterId":"C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"2YvS0mw82fU8NMkcZSiYkADd","details":{}}},"contextId":"Im783g2mge3rD4Y43lXLFeOO"}}
+frontend_1 | 2018-01-31T12:02:15.660458426Z {"@timestamp":"2018-01-31T12:02:15.659+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"36c2gTWmrJSawJtA-_aVsvb-","details":{}},{"name":"VariantRouting","id":"jl8WWpMNHdy2q0bUYpDKmED6","details":{"partnerId":"test-partner-id","masterId":"C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"36c2gTWmrJSawJtA-_aVsvb-","details":{}}},"contextId":"Im783g2mge3rD4Y43lXLFeOO"}}
+frontend_1 | 2018-01-31T12:02:15.661231795Z {"@timestamp":"2018-01-31T12:02:15.660+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"36c2gTWmrJSawJtA-_aVsvb-","details":{}},{"name":"VariantRouting","id":"jl8WWpMNHdy2q0bUYpDKmED6","details":{"partnerId":"test-partner-id","masterId":"C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"36c2gTWmrJSawJtA-_aVsvb-","details":{}}},"contextId":"Im783g2mge3rD4Y43lXLFeOO"}}
+frontend_1 | 2018-01-31T12:02:15.662140037Z {"@timestamp":"2018-01-31T12:02:15.661+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"VxTbZA6CREK71arpnJahaVlk","details":{"request":{"partnerId":"test-partner-id","masterId":"C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47","dimensions":{"width":160,"height":120}}}},{"name":"VariantRouting","id":"jl8WWpMNHdy2q0bUYpDKmED6","details":{"partnerId":"test-partner-id","masterId":"C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"VxTbZA6CREK71arpnJahaVlk","details":{"request":{"partnerId":"test-partner-id","masterId":"C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47","dimensions":{"width":160,"height":120}}}}},"contextId":"Im783g2mge3rD4Y43lXLFeOO"}}
+frontend_1 | 2018-01-31T12:02:15.664020987Z {"@timestamp":"2018-01-31T12:02:15.663+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"VxTbZA6CREK71arpnJahaVlk","details":{"request":{"partnerId":"test-partner-id","masterId":"C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47","dimensions":{"width":160,"height":120}}}},{"name":"VariantRouting","id":"jl8WWpMNHdy2q0bUYpDKmED6","details":{"partnerId":"test-partner-id","masterId":"C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"VxTbZA6CREK71arpnJahaVlk","details":{"request":{"partnerId":"test-partner-id","masterId":"C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47","dimensions":{"width":160,"height":120}}}}},"contextId":"Im783g2mge3rD4Y43lXLFeOO"}}
+frontend_1 | 2018-01-31T12:02:15.965158260Z {"@timestamp":"2018-01-31T12:02:15.964+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"VxTbZA6CREK71arpnJahaVlk","details":{"request":{"partnerId":"test-partner-id","masterId":"C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47","dimensions":{"width":160,"height":120}}}},{"name":"VariantRouting","id":"jl8WWpMNHdy2q0bUYpDKmED6","details":{"partnerId":"test-partner-id","masterId":"C6434897B4EDFFC35D045D37563E1F14DB3D7FB91E328444ED73C2C6125DFD47"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"Im783g2mge3rD4Y43lXLFeOO"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:16.506332714Z {"@timestamp":"2018-01-31T12:02:16.505+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"kE6duIOR5yqf-5oUeSl0R0Vy","details":{"endpoint":"GET /health","transactionId":"vIMgspKLHMDMG06SrXSyid-q"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"kE6duIOR5yqf-5oUeSl0R0Vy","details":{"endpoint":"GET /health","transactionId":"vIMgspKLHMDMG06SrXSyid-q"}}},"contextId":"sdzybkPbUE4d0fZiI_RXnUSX"}}
+frontend_1 | 2018-01-31T12:02:16.506851814Z {"@timestamp":"2018-01-31T12:02:16.506+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"kE6duIOR5yqf-5oUeSl0R0Vy","details":{"endpoint":"GET /health","transactionId":"vIMgspKLHMDMG06SrXSyid-q"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"kE6duIOR5yqf-5oUeSl0R0Vy","details":{"endpoint":"GET /health","transactionId":"vIMgspKLHMDMG06SrXSyid-q"}}},"contextId":"sdzybkPbUE4d0fZiI_RXnUSX"}}
+frontend_1 | 2018-01-31T12:02:16.525943715Z {"@timestamp":"2018-01-31T12:02:16.522+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"PW2pwu-mrV5mar-3KaWReaPc","details":{"endpoint":"GET /v1/variant/test-partner-id/A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE/crop?width=75&height=75","transactionId":"9ZNW3PJSvvFCqpz3U5h2DrIX"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"PW2pwu-mrV5mar-3KaWReaPc","details":{"endpoint":"GET /v1/variant/test-partner-id/A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE/crop?width=75&height=75","transactionId":"9ZNW3PJSvvFCqpz3U5h2DrIX"}}},"contextId":"oNTX_5BLkuZstEPoJKzYtlvo"}}
+frontend_1 | 2018-01-31T12:02:16.526507379Z {"@timestamp":"2018-01-31T12:02:16.526+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"mmYwCFlJ4J9vumGj_Vvl5sfA","details":{"partnerId":"test-partner-id","masterId":"A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"mmYwCFlJ4J9vumGj_Vvl5sfA","details":{"partnerId":"test-partner-id","masterId":"A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE"}}},"contextId":"oNTX_5BLkuZstEPoJKzYtlvo"}}
+frontend_1 | 2018-01-31T12:02:16.527000282Z {"@timestamp":"2018-01-31T12:02:16.526+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"mmYwCFlJ4J9vumGj_Vvl5sfA","details":{"partnerId":"test-partner-id","masterId":"A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"mmYwCFlJ4J9vumGj_Vvl5sfA","details":{"partnerId":"test-partner-id","masterId":"A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE"}}},"contextId":"oNTX_5BLkuZstEPoJKzYtlvo"}}
+frontend_1 | 2018-01-31T12:02:16.527640910Z {"@timestamp":"2018-01-31T12:02:16.527+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"PW2pwu-mrV5mar-3KaWReaPc","details":{"endpoint":"GET /v1/variant/test-partner-id/A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE/crop?width=75&height=75","transactionId":"9ZNW3PJSvvFCqpz3U5h2DrIX"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"PW2pwu-mrV5mar-3KaWReaPc","details":{"endpoint":"GET /v1/variant/test-partner-id/A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE/crop?width=75&height=75","transactionId":"9ZNW3PJSvvFCqpz3U5h2DrIX"}}},"contextId":"oNTX_5BLkuZstEPoJKzYtlvo"}}
+frontend_1 | 2018-01-31T12:02:16.528681308Z {"@timestamp":"2018-01-31T12:02:16.528+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"sgusGs1IT38NwWLufhwJTCsF","details":{}},{"name":"VariantRouting","id":"mmYwCFlJ4J9vumGj_Vvl5sfA","details":{"partnerId":"test-partner-id","masterId":"A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"sgusGs1IT38NwWLufhwJTCsF","details":{}}},"contextId":"oNTX_5BLkuZstEPoJKzYtlvo"}}
+frontend_1 | 2018-01-31T12:02:16.529441721Z {"@timestamp":"2018-01-31T12:02:16.529+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"sgusGs1IT38NwWLufhwJTCsF","details":{}},{"name":"VariantRouting","id":"mmYwCFlJ4J9vumGj_Vvl5sfA","details":{"partnerId":"test-partner-id","masterId":"A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"sgusGs1IT38NwWLufhwJTCsF","details":{}}},"contextId":"oNTX_5BLkuZstEPoJKzYtlvo"}}
+frontend_1 | 2018-01-31T12:02:16.529829104Z {"@timestamp":"2018-01-31T12:02:16.529+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"XJjQzM3QjV82jXqpZ1jAR3sW","details":{}},{"name":"VariantRouting","id":"mmYwCFlJ4J9vumGj_Vvl5sfA","details":{"partnerId":"test-partner-id","masterId":"A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"XJjQzM3QjV82jXqpZ1jAR3sW","details":{}}},"contextId":"oNTX_5BLkuZstEPoJKzYtlvo"}}
+frontend_1 | 2018-01-31T12:02:16.530179851Z {"@timestamp":"2018-01-31T12:02:16.529+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"XJjQzM3QjV82jXqpZ1jAR3sW","details":{}},{"name":"VariantRouting","id":"mmYwCFlJ4J9vumGj_Vvl5sfA","details":{"partnerId":"test-partner-id","masterId":"A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"XJjQzM3QjV82jXqpZ1jAR3sW","details":{}}},"contextId":"oNTX_5BLkuZstEPoJKzYtlvo"}}
+frontend_1 | 2018-01-31T12:02:16.530813814Z {"@timestamp":"2018-01-31T12:02:16.530+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"rDOOkGPTq4K-S6PZ2xEk3-JJ","details":{"request":{"partnerId":"test-partner-id","masterId":"A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE","dimensions":{"width":75,"height":75}}}},{"name":"VariantRouting","id":"mmYwCFlJ4J9vumGj_Vvl5sfA","details":{"partnerId":"test-partner-id","masterId":"A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"rDOOkGPTq4K-S6PZ2xEk3-JJ","details":{"request":{"partnerId":"test-partner-id","masterId":"A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE","dimensions":{"width":75,"height":75}}}}},"contextId":"oNTX_5BLkuZstEPoJKzYtlvo"}}
+frontend_1 | 2018-01-31T12:02:16.544750598Z {"@timestamp":"2018-01-31T12:02:16.544+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"rDOOkGPTq4K-S6PZ2xEk3-JJ","details":{"request":{"partnerId":"test-partner-id","masterId":"A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE","dimensions":{"width":75,"height":75}}}},{"name":"VariantRouting","id":"mmYwCFlJ4J9vumGj_Vvl5sfA","details":{"partnerId":"test-partner-id","masterId":"A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"rDOOkGPTq4K-S6PZ2xEk3-JJ","details":{"request":{"partnerId":"test-partner-id","masterId":"A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE","dimensions":{"width":75,"height":75}}}}},"contextId":"oNTX_5BLkuZstEPoJKzYtlvo"}}
+frontend_1 | 2018-01-31T12:02:16.846207914Z {"@timestamp":"2018-01-31T12:02:16.845+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"rDOOkGPTq4K-S6PZ2xEk3-JJ","details":{"request":{"partnerId":"test-partner-id","masterId":"A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE","dimensions":{"width":75,"height":75}}}},{"name":"VariantRouting","id":"mmYwCFlJ4J9vumGj_Vvl5sfA","details":{"partnerId":"test-partner-id","masterId":"A7B81B6D22B18970AD633654EE6B0D33BCC2432BBDFB50C708FDD413F7ADDCCE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"oNTX_5BLkuZstEPoJKzYtlvo"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:17.484519172Z {"@timestamp":"2018-01-31T12:02:17.484+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"63iN-jppsWNyrtu_iDljusy2","details":{"endpoint":"GET /health","transactionId":"jbCk75cu4aMcNNMAjwGxz_If"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"63iN-jppsWNyrtu_iDljusy2","details":{"endpoint":"GET /health","transactionId":"jbCk75cu4aMcNNMAjwGxz_If"}}},"contextId":"eyFBU3E_HiJHn1CDOwfxl2MY"}}
+frontend_1 | 2018-01-31T12:02:17.485003056Z {"@timestamp":"2018-01-31T12:02:17.484+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"63iN-jppsWNyrtu_iDljusy2","details":{"endpoint":"GET /health","transactionId":"jbCk75cu4aMcNNMAjwGxz_If"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"63iN-jppsWNyrtu_iDljusy2","details":{"endpoint":"GET /health","transactionId":"jbCk75cu4aMcNNMAjwGxz_If"}}},"contextId":"eyFBU3E_HiJHn1CDOwfxl2MY"}}
+frontend_1 | 2018-01-31T12:02:17.514041851Z {"@timestamp":"2018-01-31T12:02:17.513+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"0spBBvLZZ-MOVex6v6GbX0sv","details":{"endpoint":"GET /v1/variant/test-partner-id/9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A/crop?width=160&height=108","transactionId":"u4qT8ZrlwcD3Ls9vlzyFaLJt"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"0spBBvLZZ-MOVex6v6GbX0sv","details":{"endpoint":"GET /v1/variant/test-partner-id/9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A/crop?width=160&height=108","transactionId":"u4qT8ZrlwcD3Ls9vlzyFaLJt"}}},"contextId":"3LPlWOtOPpAJBoWsh68-lAVD"}}
+frontend_1 | 2018-01-31T12:02:17.514611087Z {"@timestamp":"2018-01-31T12:02:17.514+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"epvUo8RlOhK3wHP1dun2ULZH","details":{"partnerId":"test-partner-id","masterId":"9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"epvUo8RlOhK3wHP1dun2ULZH","details":{"partnerId":"test-partner-id","masterId":"9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A"}}},"contextId":"3LPlWOtOPpAJBoWsh68-lAVD"}}
+frontend_1 | 2018-01-31T12:02:17.515369856Z {"@timestamp":"2018-01-31T12:02:17.514+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"epvUo8RlOhK3wHP1dun2ULZH","details":{"partnerId":"test-partner-id","masterId":"9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"epvUo8RlOhK3wHP1dun2ULZH","details":{"partnerId":"test-partner-id","masterId":"9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A"}}},"contextId":"3LPlWOtOPpAJBoWsh68-lAVD"}}
+frontend_1 | 2018-01-31T12:02:17.515922920Z {"@timestamp":"2018-01-31T12:02:17.515+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"0spBBvLZZ-MOVex6v6GbX0sv","details":{"endpoint":"GET /v1/variant/test-partner-id/9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A/crop?width=160&height=108","transactionId":"u4qT8ZrlwcD3Ls9vlzyFaLJt"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"0spBBvLZZ-MOVex6v6GbX0sv","details":{"endpoint":"GET /v1/variant/test-partner-id/9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A/crop?width=160&height=108","transactionId":"u4qT8ZrlwcD3Ls9vlzyFaLJt"}}},"contextId":"3LPlWOtOPpAJBoWsh68-lAVD"}}
+frontend_1 | 2018-01-31T12:02:17.517008678Z {"@timestamp":"2018-01-31T12:02:17.516+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"bZxaqrLJ-AsHRmXYXUyARLsA","details":{}},{"name":"VariantRouting","id":"epvUo8RlOhK3wHP1dun2ULZH","details":{"partnerId":"test-partner-id","masterId":"9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"bZxaqrLJ-AsHRmXYXUyARLsA","details":{}}},"contextId":"3LPlWOtOPpAJBoWsh68-lAVD"}}
+frontend_1 | 2018-01-31T12:02:17.517593788Z {"@timestamp":"2018-01-31T12:02:17.517+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"bZxaqrLJ-AsHRmXYXUyARLsA","details":{}},{"name":"VariantRouting","id":"epvUo8RlOhK3wHP1dun2ULZH","details":{"partnerId":"test-partner-id","masterId":"9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"bZxaqrLJ-AsHRmXYXUyARLsA","details":{}}},"contextId":"3LPlWOtOPpAJBoWsh68-lAVD"}}
+frontend_1 | 2018-01-31T12:02:17.517984885Z {"@timestamp":"2018-01-31T12:02:17.517+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"nBpYBjGNSh7RYo8982wBlS_Y","details":{}},{"name":"VariantRouting","id":"epvUo8RlOhK3wHP1dun2ULZH","details":{"partnerId":"test-partner-id","masterId":"9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"nBpYBjGNSh7RYo8982wBlS_Y","details":{}}},"contextId":"3LPlWOtOPpAJBoWsh68-lAVD"}}
+frontend_1 | 2018-01-31T12:02:17.518618509Z {"@timestamp":"2018-01-31T12:02:17.518+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"nBpYBjGNSh7RYo8982wBlS_Y","details":{}},{"name":"VariantRouting","id":"epvUo8RlOhK3wHP1dun2ULZH","details":{"partnerId":"test-partner-id","masterId":"9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"nBpYBjGNSh7RYo8982wBlS_Y","details":{}}},"contextId":"3LPlWOtOPpAJBoWsh68-lAVD"}}
+frontend_1 | 2018-01-31T12:02:17.519193743Z {"@timestamp":"2018-01-31T12:02:17.518+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"ssUjqUvInt1QfHlI5F_162C-","details":{"request":{"partnerId":"test-partner-id","masterId":"9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"epvUo8RlOhK3wHP1dun2ULZH","details":{"partnerId":"test-partner-id","masterId":"9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"ssUjqUvInt1QfHlI5F_162C-","details":{"request":{"partnerId":"test-partner-id","masterId":"9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A","dimensions":{"width":160,"height":108}}}}},"contextId":"3LPlWOtOPpAJBoWsh68-lAVD"}}
+frontend_1 | 2018-01-31T12:02:17.520976422Z {"@timestamp":"2018-01-31T12:02:17.520+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"ssUjqUvInt1QfHlI5F_162C-","details":{"request":{"partnerId":"test-partner-id","masterId":"9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"epvUo8RlOhK3wHP1dun2ULZH","details":{"partnerId":"test-partner-id","masterId":"9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"ssUjqUvInt1QfHlI5F_162C-","details":{"request":{"partnerId":"test-partner-id","masterId":"9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A","dimensions":{"width":160,"height":108}}}}},"contextId":"3LPlWOtOPpAJBoWsh68-lAVD"}}
+frontend_1 | 2018-01-31T12:02:17.804204796Z {"@timestamp":"2018-01-31T12:02:17.803+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logSuccess$1.apply(LoggerHelper.scala:86)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"ssUjqUvInt1QfHlI5F_162C-","details":{"request":{"partnerId":"test-partner-id","masterId":"9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"epvUo8RlOhK3wHP1dun2ULZH","details":{"partnerId":"test-partner-id","masterId":"9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"message":"CropMessage(PartnerId(test-partner-id),MasterId(9490DC81E9E3E7794E27DBF9BF9C4FDE7F469C759872F22ED64A4E323D353A0A),Dimensions(160,108),None)","response":"VariantWorkerSuccess(Source(SourceShape(single.out(1406790402))),image/jpeg)"},"contextId":"3LPlWOtOPpAJBoWsh68-lAVD"}}
+frontend_1 | 2018-01-31T12:02:29.146672682Z {"@timestamp":"2018-01-31T12:02:29.146+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"HUttgnZFxbNaHWp8ojmwVUO_","details":{"endpoint":"GET /health","transactionId":"OKoZCE87ibMPd6veH_JYMIaw"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"HUttgnZFxbNaHWp8ojmwVUO_","details":{"endpoint":"GET /health","transactionId":"OKoZCE87ibMPd6veH_JYMIaw"}}},"contextId":"iObRMsqNPDhZ-MZjERsRPUvs"}}
+frontend_1 | 2018-01-31T12:02:29.147627786Z {"@timestamp":"2018-01-31T12:02:29.146+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"HUttgnZFxbNaHWp8ojmwVUO_","details":{"endpoint":"GET /health","transactionId":"OKoZCE87ibMPd6veH_JYMIaw"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"HUttgnZFxbNaHWp8ojmwVUO_","details":{"endpoint":"GET /health","transactionId":"OKoZCE87ibMPd6veH_JYMIaw"}}},"contextId":"iObRMsqNPDhZ-MZjERsRPUvs"}}
+frontend_1 | 2018-01-31T12:02:29.154096027Z {"@timestamp":"2018-01-31T12:02:29.152+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"GqcJ_hJcXhLknFYGyavbhlSS","details":{"endpoint":"GET /health","transactionId":"RDn-D5VlecA5QuZXQU779dWp"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"GqcJ_hJcXhLknFYGyavbhlSS","details":{"endpoint":"GET /health","transactionId":"RDn-D5VlecA5QuZXQU779dWp"}}},"contextId":"wOFkxJ2DAvGZz53OK4zy6vyd"}}
+frontend_1 | 2018-01-31T12:02:29.154132827Z {"@timestamp":"2018-01-31T12:02:29.152+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"GqcJ_hJcXhLknFYGyavbhlSS","details":{"endpoint":"GET /health","transactionId":"RDn-D5VlecA5QuZXQU779dWp"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"GqcJ_hJcXhLknFYGyavbhlSS","details":{"endpoint":"GET /health","transactionId":"RDn-D5VlecA5QuZXQU779dWp"}}},"contextId":"wOFkxJ2DAvGZz53OK4zy6vyd"}}
+frontend_1 | 2018-01-31T12:02:29.158526955Z {"@timestamp":"2018-01-31T12:02:29.156+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"15I5-wPwkxb_em2JNNltOZ-S","details":{"endpoint":"GET /health","transactionId":"GLHvumj_r3O5lW1etRYZf42C"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"15I5-wPwkxb_em2JNNltOZ-S","details":{"endpoint":"GET /health","transactionId":"GLHvumj_r3O5lW1etRYZf42C"}}},"contextId":"Vo_SQ5jsNE8wo8mKHl4LbE0N"}}
+frontend_1 | 2018-01-31T12:02:29.158566048Z {"@timestamp":"2018-01-31T12:02:29.156+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"15I5-wPwkxb_em2JNNltOZ-S","details":{"endpoint":"GET /health","transactionId":"GLHvumj_r3O5lW1etRYZf42C"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"15I5-wPwkxb_em2JNNltOZ-S","details":{"endpoint":"GET /health","transactionId":"GLHvumj_r3O5lW1etRYZf42C"}}},"contextId":"Vo_SQ5jsNE8wo8mKHl4LbE0N"}}
+frontend_1 | 2018-01-31T12:02:29.169857425Z {"@timestamp":"2018-01-31T12:02:29.165+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"ElZ3x74GLqChyaSYvimF0a-X","details":{"endpoint":"GET /health","transactionId":"dzHBM-s1l3dPBEyIdHSrRyF1"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"ElZ3x74GLqChyaSYvimF0a-X","details":{"endpoint":"GET /health","transactionId":"dzHBM-s1l3dPBEyIdHSrRyF1"}}},"contextId":"JksPf5btS1q2tkV2NJ_3yhB6"}}
+frontend_1 | 2018-01-31T12:02:29.169920613Z {"@timestamp":"2018-01-31T12:02:29.168+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"ElZ3x74GLqChyaSYvimF0a-X","details":{"endpoint":"GET /health","transactionId":"dzHBM-s1l3dPBEyIdHSrRyF1"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"ElZ3x74GLqChyaSYvimF0a-X","details":{"endpoint":"GET /health","transactionId":"dzHBM-s1l3dPBEyIdHSrRyF1"}}},"contextId":"JksPf5btS1q2tkV2NJ_3yhB6"}}
+frontend_1 | 2018-01-31T12:02:29.175510722Z {"@timestamp":"2018-01-31T12:02:29.174+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"wjkXIUyoKGmcGQHzpLV4YTnf","details":{"endpoint":"GET /health","transactionId":"5541F_Ejd8n-sJaH9K2-Lo8u"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"wjkXIUyoKGmcGQHzpLV4YTnf","details":{"endpoint":"GET /health","transactionId":"5541F_Ejd8n-sJaH9K2-Lo8u"}}},"contextId":"j-HM4GUDtsZ_YHD0Pxd3l5oV"}}
+frontend_1 | 2018-01-31T12:02:29.177414894Z {"@timestamp":"2018-01-31T12:02:29.175+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"wjkXIUyoKGmcGQHzpLV4YTnf","details":{"endpoint":"GET /health","transactionId":"5541F_Ejd8n-sJaH9K2-Lo8u"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"wjkXIUyoKGmcGQHzpLV4YTnf","details":{"endpoint":"GET /health","transactionId":"5541F_Ejd8n-sJaH9K2-Lo8u"}}},"contextId":"j-HM4GUDtsZ_YHD0Pxd3l5oV"}}
+frontend_1 | 2018-01-31T12:02:29.196764040Z {"@timestamp":"2018-01-31T12:02:29.195+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"ublrIl-dEJhyeFHy41vQhgGO","details":{"endpoint":"GET /v1/variant/test-partner-id/75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803/crop?width=160&height=160","transactionId":"dth_IVfDsbNzdSe8q_NmTfom"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"ublrIl-dEJhyeFHy41vQhgGO","details":{"endpoint":"GET /v1/variant/test-partner-id/75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803/crop?width=160&height=160","transactionId":"dth_IVfDsbNzdSe8q_NmTfom"}}},"contextId":"UcOH6-7nA4pXwqUf442legy6"}}
+frontend_1 | 2018-01-31T12:02:29.199633683Z {"@timestamp":"2018-01-31T12:02:29.196+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"PwyVIMmU_OkZUDAQ8cuJzq20","details":{"partnerId":"test-partner-id","masterId":"75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"PwyVIMmU_OkZUDAQ8cuJzq20","details":{"partnerId":"test-partner-id","masterId":"75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803"}}},"contextId":"UcOH6-7nA4pXwqUf442legy6"}}
+frontend_1 | 2018-01-31T12:02:29.199867694Z {"@timestamp":"2018-01-31T12:02:29.199+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"PwyVIMmU_OkZUDAQ8cuJzq20","details":{"partnerId":"test-partner-id","masterId":"75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"PwyVIMmU_OkZUDAQ8cuJzq20","details":{"partnerId":"test-partner-id","masterId":"75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803"}}},"contextId":"UcOH6-7nA4pXwqUf442legy6"}}
+frontend_1 | 2018-01-31T12:02:29.200193847Z {"@timestamp":"2018-01-31T12:02:29.199+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"ublrIl-dEJhyeFHy41vQhgGO","details":{"endpoint":"GET /v1/variant/test-partner-id/75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803/crop?width=160&height=160","transactionId":"dth_IVfDsbNzdSe8q_NmTfom"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"ublrIl-dEJhyeFHy41vQhgGO","details":{"endpoint":"GET /v1/variant/test-partner-id/75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803/crop?width=160&height=160","transactionId":"dth_IVfDsbNzdSe8q_NmTfom"}}},"contextId":"UcOH6-7nA4pXwqUf442legy6"}}
+frontend_1 | 2018-01-31T12:02:29.201022600Z {"@timestamp":"2018-01-31T12:02:29.198+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"8pntcTZci2MM5WJle6V84lLA","details":{"endpoint":"GET /v1/variant/test-partner-id/4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F/crop?width=62&height=367","transactionId":"tWgb9ZZ5gAenK6AgqpRnRSYq"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"8pntcTZci2MM5WJle6V84lLA","details":{"endpoint":"GET /v1/variant/test-partner-id/4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F/crop?width=62&height=367","transactionId":"tWgb9ZZ5gAenK6AgqpRnRSYq"}}},"contextId":"zVfIVaM8-izbmfSsrqKdwKUz"}}
+frontend_1 | 2018-01-31T12:02:29.201404635Z {"@timestamp":"2018-01-31T12:02:29.201+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"jiXG3uEkoBUYW-u_cOdwOHeU","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"jiXG3uEkoBUYW-u_cOdwOHeU","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}},"contextId":"zVfIVaM8-izbmfSsrqKdwKUz"}}
+frontend_1 | 2018-01-31T12:02:29.201422371Z {"@timestamp":"2018-01-31T12:02:29.201+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"7YqjQwhzGB04d8tdqsCRxfOb","details":{"endpoint":"GET /v1/variant/test-partner-id/264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB/crop?width=240&height=160","transactionId":"ojf_k-Ny0uqlXDNW_BT6dpbf"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"7YqjQwhzGB04d8tdqsCRxfOb","details":{"endpoint":"GET /v1/variant/test-partner-id/264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB/crop?width=240&height=160","transactionId":"ojf_k-Ny0uqlXDNW_BT6dpbf"}}},"contextId":"jZID1MgNk8wqCSVthvkTRBw4"}}
+frontend_1 | 2018-01-31T12:02:29.201799941Z {"@timestamp":"2018-01-31T12:02:29.201+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"jiXG3uEkoBUYW-u_cOdwOHeU","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"jiXG3uEkoBUYW-u_cOdwOHeU","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}},"contextId":"zVfIVaM8-izbmfSsrqKdwKUz"}}
+frontend_1 | 2018-01-31T12:02:29.202586735Z {"@timestamp":"2018-01-31T12:02:29.202+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"BvF3FRNiIyP2zRZ4GICgQ8tE","details":{}},{"name":"VariantRouting","id":"PwyVIMmU_OkZUDAQ8cuJzq20","details":{"partnerId":"test-partner-id","masterId":"75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"BvF3FRNiIyP2zRZ4GICgQ8tE","details":{}}},"contextId":"UcOH6-7nA4pXwqUf442legy6"}}
+frontend_1 | 2018-01-31T12:02:29.203763756Z {"@timestamp":"2018-01-31T12:02:29.203+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"BvF3FRNiIyP2zRZ4GICgQ8tE","details":{}},{"name":"VariantRouting","id":"PwyVIMmU_OkZUDAQ8cuJzq20","details":{"partnerId":"test-partner-id","masterId":"75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"BvF3FRNiIyP2zRZ4GICgQ8tE","details":{}}},"contextId":"UcOH6-7nA4pXwqUf442legy6"}}
+frontend_1 | 2018-01-31T12:02:29.203909447Z {"@timestamp":"2018-01-31T12:02:29.201+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"8pntcTZci2MM5WJle6V84lLA","details":{"endpoint":"GET /v1/variant/test-partner-id/4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F/crop?width=62&height=367","transactionId":"tWgb9ZZ5gAenK6AgqpRnRSYq"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"8pntcTZci2MM5WJle6V84lLA","details":{"endpoint":"GET /v1/variant/test-partner-id/4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F/crop?width=62&height=367","transactionId":"tWgb9ZZ5gAenK6AgqpRnRSYq"}}},"contextId":"zVfIVaM8-izbmfSsrqKdwKUz"}}
+frontend_1 | 2018-01-31T12:02:29.205150156Z {"@timestamp":"2018-01-31T12:02:29.204+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"fZZ6MnH1q0yqclOGqfkTAIFL","details":{}},{"name":"VariantRouting","id":"PwyVIMmU_OkZUDAQ8cuJzq20","details":{"partnerId":"test-partner-id","masterId":"75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"fZZ6MnH1q0yqclOGqfkTAIFL","details":{}}},"contextId":"UcOH6-7nA4pXwqUf442legy6"}}
+frontend_1 | 2018-01-31T12:02:29.205542474Z {"@timestamp":"2018-01-31T12:02:29.201+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"HZ-WL2tB0-LxWoYHPw835yN8","details":{"partnerId":"test-partner-id","masterId":"264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"HZ-WL2tB0-LxWoYHPw835yN8","details":{"partnerId":"test-partner-id","masterId":"264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB"}}},"contextId":"jZID1MgNk8wqCSVthvkTRBw4"}}
+frontend_1 | 2018-01-31T12:02:29.205892774Z {"@timestamp":"2018-01-31T12:02:29.205+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"HZ-WL2tB0-LxWoYHPw835yN8","details":{"partnerId":"test-partner-id","masterId":"264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"HZ-WL2tB0-LxWoYHPw835yN8","details":{"partnerId":"test-partner-id","masterId":"264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB"}}},"contextId":"jZID1MgNk8wqCSVthvkTRBw4"}}
+frontend_1 | 2018-01-31T12:02:29.206888878Z {"@timestamp":"2018-01-31T12:02:29.205+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"fZZ6MnH1q0yqclOGqfkTAIFL","details":{}},{"name":"VariantRouting","id":"PwyVIMmU_OkZUDAQ8cuJzq20","details":{"partnerId":"test-partner-id","masterId":"75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"fZZ6MnH1q0yqclOGqfkTAIFL","details":{}}},"contextId":"UcOH6-7nA4pXwqUf442legy6"}}
+frontend_1 | 2018-01-31T12:02:29.207397823Z {"@timestamp":"2018-01-31T12:02:29.207+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"eaT5_e0w5siQs6rLSgM0HEcy","details":{"request":{"partnerId":"test-partner-id","masterId":"75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803","dimensions":{"width":160,"height":160}}}},{"name":"VariantRouting","id":"PwyVIMmU_OkZUDAQ8cuJzq20","details":{"partnerId":"test-partner-id","masterId":"75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"eaT5_e0w5siQs6rLSgM0HEcy","details":{"request":{"partnerId":"test-partner-id","masterId":"75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803","dimensions":{"width":160,"height":160}}}}},"contextId":"UcOH6-7nA4pXwqUf442legy6"}}
+frontend_1 | 2018-01-31T12:02:29.207865530Z {"@timestamp":"2018-01-31T12:02:29.206+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"J337Au-_NAB31_ZFU9JTxcmE","details":{}},{"name":"VariantRouting","id":"jiXG3uEkoBUYW-u_cOdwOHeU","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"J337Au-_NAB31_ZFU9JTxcmE","details":{}}},"contextId":"zVfIVaM8-izbmfSsrqKdwKUz"}}
+frontend_1 | 2018-01-31T12:02:29.208291454Z {"@timestamp":"2018-01-31T12:02:29.208+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"J337Au-_NAB31_ZFU9JTxcmE","details":{}},{"name":"VariantRouting","id":"jiXG3uEkoBUYW-u_cOdwOHeU","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"J337Au-_NAB31_ZFU9JTxcmE","details":{}}},"contextId":"zVfIVaM8-izbmfSsrqKdwKUz"}}
+frontend_1 | 2018-01-31T12:02:29.208851484Z {"@timestamp":"2018-01-31T12:02:29.207+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"7YqjQwhzGB04d8tdqsCRxfOb","details":{"endpoint":"GET /v1/variant/test-partner-id/264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB/crop?width=240&height=160","transactionId":"ojf_k-Ny0uqlXDNW_BT6dpbf"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"7YqjQwhzGB04d8tdqsCRxfOb","details":{"endpoint":"GET /v1/variant/test-partner-id/264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB/crop?width=240&height=160","transactionId":"ojf_k-Ny0uqlXDNW_BT6dpbf"}}},"contextId":"jZID1MgNk8wqCSVthvkTRBw4"}}
+frontend_1 | 2018-01-31T12:02:29.208963557Z {"@timestamp":"2018-01-31T12:02:29.208+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"0q4a5kPhmyVMYd3XbZmS1Ll-","details":{}},{"name":"VariantRouting","id":"jiXG3uEkoBUYW-u_cOdwOHeU","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"0q4a5kPhmyVMYd3XbZmS1Ll-","details":{}}},"contextId":"zVfIVaM8-izbmfSsrqKdwKUz"}}
+frontend_1 | 2018-01-31T12:02:29.209259046Z {"@timestamp":"2018-01-31T12:02:29.208+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"0q4a5kPhmyVMYd3XbZmS1Ll-","details":{}},{"name":"VariantRouting","id":"jiXG3uEkoBUYW-u_cOdwOHeU","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"0q4a5kPhmyVMYd3XbZmS1Ll-","details":{}}},"contextId":"zVfIVaM8-izbmfSsrqKdwKUz"}}
+frontend_1 | 2018-01-31T12:02:29.216621099Z {"@timestamp":"2018-01-31T12:02:29.213+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"j64rHsX189MhNoyo8GshWykF","details":{"request":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F","dimensions":{"width":62,"height":367}}}},{"name":"VariantRouting","id":"jiXG3uEkoBUYW-u_cOdwOHeU","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"j64rHsX189MhNoyo8GshWykF","details":{"request":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F","dimensions":{"width":62,"height":367}}}}},"contextId":"zVfIVaM8-izbmfSsrqKdwKUz"}}
+frontend_1 | 2018-01-31T12:02:29.217280568Z {"@timestamp":"2018-01-31T12:02:29.216+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"pTS19xbZRDjGPfM7nif0Olf2","details":{"endpoint":"GET /v1/variant/test-partner-id/4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F/crop?width=120&height=80","transactionId":"UoHobHvHcXtAZFkdmHieS6Q6"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"pTS19xbZRDjGPfM7nif0Olf2","details":{"endpoint":"GET /v1/variant/test-partner-id/4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F/crop?width=120&height=80","transactionId":"UoHobHvHcXtAZFkdmHieS6Q6"}}},"contextId":"LCrRHO1Ca5xPOM1_jxxZjCNv"}}
+frontend_1 | 2018-01-31T12:02:29.221913771Z {"@timestamp":"2018-01-31T12:02:29.221+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"ToGPS6dTzgrmvEbb7bGgPpKy","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"ToGPS6dTzgrmvEbb7bGgPpKy","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}},"contextId":"LCrRHO1Ca5xPOM1_jxxZjCNv"}}
+frontend_1 | 2018-01-31T12:02:29.225518062Z {"@timestamp":"2018-01-31T12:02:29.225+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"ToGPS6dTzgrmvEbb7bGgPpKy","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"ToGPS6dTzgrmvEbb7bGgPpKy","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}},"contextId":"LCrRHO1Ca5xPOM1_jxxZjCNv"}}
+frontend_1 | 2018-01-31T12:02:29.228212073Z {"@timestamp":"2018-01-31T12:02:29.227+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"pTS19xbZRDjGPfM7nif0Olf2","details":{"endpoint":"GET /v1/variant/test-partner-id/4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F/crop?width=120&height=80","transactionId":"UoHobHvHcXtAZFkdmHieS6Q6"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"pTS19xbZRDjGPfM7nif0Olf2","details":{"endpoint":"GET /v1/variant/test-partner-id/4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F/crop?width=120&height=80","transactionId":"UoHobHvHcXtAZFkdmHieS6Q6"}}},"contextId":"LCrRHO1Ca5xPOM1_jxxZjCNv"}}
+frontend_1 | 2018-01-31T12:02:29.234083407Z {"@timestamp":"2018-01-31T12:02:29.233+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"r0NEtsfw42D8PjVmnNss1QHj","details":{}},{"name":"VariantRouting","id":"ToGPS6dTzgrmvEbb7bGgPpKy","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"r0NEtsfw42D8PjVmnNss1QHj","details":{}}},"contextId":"LCrRHO1Ca5xPOM1_jxxZjCNv"}}
+frontend_1 | 2018-01-31T12:02:29.236592614Z {"@timestamp":"2018-01-31T12:02:29.236+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"r0NEtsfw42D8PjVmnNss1QHj","details":{}},{"name":"VariantRouting","id":"ToGPS6dTzgrmvEbb7bGgPpKy","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"r0NEtsfw42D8PjVmnNss1QHj","details":{}}},"contextId":"LCrRHO1Ca5xPOM1_jxxZjCNv"}}
+frontend_1 | 2018-01-31T12:02:29.240773710Z {"@timestamp":"2018-01-31T12:02:29.240+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"9uGNtUsYDAjV92TYJO5Mqixn","details":{"endpoint":"GET /v1/variant/test-partner-id/A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029/crop?width=320&height=240","transactionId":"otI_dgVYYpHEfV3L27FCfmNR"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"9uGNtUsYDAjV92TYJO5Mqixn","details":{"endpoint":"GET /v1/variant/test-partner-id/A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029/crop?width=320&height=240","transactionId":"otI_dgVYYpHEfV3L27FCfmNR"}}},"contextId":"NB-TD7M1keYt6JLkIhOW0vyV"}}
+frontend_1 | 2018-01-31T12:02:29.241931839Z {"@timestamp":"2018-01-31T12:02:29.241+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"rq2Kw-gq4T3RtNpGBpB10HoA","details":{}},{"name":"VariantRouting","id":"ToGPS6dTzgrmvEbb7bGgPpKy","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"rq2Kw-gq4T3RtNpGBpB10HoA","details":{}}},"contextId":"LCrRHO1Ca5xPOM1_jxxZjCNv"}}
+frontend_1 | 2018-01-31T12:02:29.243673806Z {"@timestamp":"2018-01-31T12:02:29.242+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"rq2Kw-gq4T3RtNpGBpB10HoA","details":{}},{"name":"VariantRouting","id":"ToGPS6dTzgrmvEbb7bGgPpKy","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"rq2Kw-gq4T3RtNpGBpB10HoA","details":{}}},"contextId":"LCrRHO1Ca5xPOM1_jxxZjCNv"}}
+frontend_1 | 2018-01-31T12:02:29.246187595Z {"@timestamp":"2018-01-31T12:02:29.217+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"oJm9qMOjDqMf2DYREuDGkzJV","details":{}},{"name":"VariantRouting","id":"HZ-WL2tB0-LxWoYHPw835yN8","details":{"partnerId":"test-partner-id","masterId":"264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"oJm9qMOjDqMf2DYREuDGkzJV","details":{}}},"contextId":"jZID1MgNk8wqCSVthvkTRBw4"}}
+frontend_1 | 2018-01-31T12:02:29.246614067Z {"@timestamp":"2018-01-31T12:02:29.244+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"gYA5-7PEdqsOmo6ShbteUpfz","details":{"request":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F","dimensions":{"width":120,"height":80}}}},{"name":"VariantRouting","id":"ToGPS6dTzgrmvEbb7bGgPpKy","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"gYA5-7PEdqsOmo6ShbteUpfz","details":{"request":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F","dimensions":{"width":120,"height":80}}}}},"contextId":"LCrRHO1Ca5xPOM1_jxxZjCNv"}}
+frontend_1 | 2018-01-31T12:02:29.248693940Z {"@timestamp":"2018-01-31T12:02:29.218+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"j64rHsX189MhNoyo8GshWykF","details":{"request":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F","dimensions":{"width":62,"height":367}}}},{"name":"VariantRouting","id":"jiXG3uEkoBUYW-u_cOdwOHeU","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"j64rHsX189MhNoyo8GshWykF","details":{"request":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F","dimensions":{"width":62,"height":367}}}}},"contextId":"zVfIVaM8-izbmfSsrqKdwKUz"}}
+frontend_1 | 2018-01-31T12:02:29.249355592Z {"@timestamp":"2018-01-31T12:02:29.231+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"9wblCZC6r4ojklV9r6aBcVZc","details":{"endpoint":"GET /health","transactionId":"xQ7DIQPLx98fUp4sa_sJSYAv"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"9wblCZC6r4ojklV9r6aBcVZc","details":{"endpoint":"GET /health","transactionId":"xQ7DIQPLx98fUp4sa_sJSYAv"}}},"contextId":"ISIWQqWxzkBX3J2fs4VUt2nN"}}
+frontend_1 | 2018-01-31T12:02:29.250488169Z {"@timestamp":"2018-01-31T12:02:29.250+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"9wblCZC6r4ojklV9r6aBcVZc","details":{"endpoint":"GET /health","transactionId":"xQ7DIQPLx98fUp4sa_sJSYAv"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"9wblCZC6r4ojklV9r6aBcVZc","details":{"endpoint":"GET /health","transactionId":"xQ7DIQPLx98fUp4sa_sJSYAv"}}},"contextId":"ISIWQqWxzkBX3J2fs4VUt2nN"}}
+frontend_1 | 2018-01-31T12:02:29.251926346Z {"@timestamp":"2018-01-31T12:02:29.251+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"oJm9qMOjDqMf2DYREuDGkzJV","details":{}},{"name":"VariantRouting","id":"HZ-WL2tB0-LxWoYHPw835yN8","details":{"partnerId":"test-partner-id","masterId":"264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"oJm9qMOjDqMf2DYREuDGkzJV","details":{}}},"contextId":"jZID1MgNk8wqCSVthvkTRBw4"}}
+frontend_1 | 2018-01-31T12:02:29.256247924Z {"@timestamp":"2018-01-31T12:02:29.253+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"JPsJdqoA3Y2P4lMUj0bs-0Qc","details":{}},{"name":"VariantRouting","id":"HZ-WL2tB0-LxWoYHPw835yN8","details":{"partnerId":"test-partner-id","masterId":"264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"JPsJdqoA3Y2P4lMUj0bs-0Qc","details":{}}},"contextId":"jZID1MgNk8wqCSVthvkTRBw4"}}
+frontend_1 | 2018-01-31T12:02:29.256818782Z {"@timestamp":"2018-01-31T12:02:29.256+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"JPsJdqoA3Y2P4lMUj0bs-0Qc","details":{}},{"name":"VariantRouting","id":"HZ-WL2tB0-LxWoYHPw835yN8","details":{"partnerId":"test-partner-id","masterId":"264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"JPsJdqoA3Y2P4lMUj0bs-0Qc","details":{}}},"contextId":"jZID1MgNk8wqCSVthvkTRBw4"}}
+frontend_1 | 2018-01-31T12:02:29.257535282Z {"@timestamp":"2018-01-31T12:02:29.257+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"sPrvMAQCPEkIixNP42Lr6BrR","details":{"request":{"partnerId":"test-partner-id","masterId":"264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB","dimensions":{"width":240,"height":160}}}},{"name":"VariantRouting","id":"HZ-WL2tB0-LxWoYHPw835yN8","details":{"partnerId":"test-partner-id","masterId":"264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"sPrvMAQCPEkIixNP42Lr6BrR","details":{"request":{"partnerId":"test-partner-id","masterId":"264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB","dimensions":{"width":240,"height":160}}}}},"contextId":"jZID1MgNk8wqCSVthvkTRBw4"}}
+frontend_1 | 2018-01-31T12:02:29.294014434Z {"@timestamp":"2018-01-31T12:02:29.292+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"eaT5_e0w5siQs6rLSgM0HEcy","details":{"request":{"partnerId":"test-partner-id","masterId":"75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803","dimensions":{"width":160,"height":160}}}},{"name":"VariantRouting","id":"PwyVIMmU_OkZUDAQ8cuJzq20","details":{"partnerId":"test-partner-id","masterId":"75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"eaT5_e0w5siQs6rLSgM0HEcy","details":{"request":{"partnerId":"test-partner-id","masterId":"75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803","dimensions":{"width":160,"height":160}}}}},"contextId":"UcOH6-7nA4pXwqUf442legy6"}}
+frontend_1 | 2018-01-31T12:02:29.299905720Z {"@timestamp":"2018-01-31T12:02:29.298+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"b62eQjkNvWO9-QYJnJzeEzyl","details":{"endpoint":"GET /v1/variant/test-partner-id/BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3/crop?width=1024&height=768","transactionId":"u2O1envwmGKohI7JOocoENKS"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"b62eQjkNvWO9-QYJnJzeEzyl","details":{"endpoint":"GET /v1/variant/test-partner-id/BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3/crop?width=1024&height=768","transactionId":"u2O1envwmGKohI7JOocoENKS"}}},"contextId":"vXI0hju_gq21VmqK6Vg23aiW"}}
+frontend_1 | 2018-01-31T12:02:29.300512829Z {"@timestamp":"2018-01-31T12:02:29.300+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"E5ZFoRCm3yAOd9fl5Skf4yrH","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"E5ZFoRCm3yAOd9fl5Skf4yrH","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}},"contextId":"vXI0hju_gq21VmqK6Vg23aiW"}}
+frontend_1 | 2018-01-31T12:02:29.300923422Z {"@timestamp":"2018-01-31T12:02:29.300+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"E5ZFoRCm3yAOd9fl5Skf4yrH","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"E5ZFoRCm3yAOd9fl5Skf4yrH","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}},"contextId":"vXI0hju_gq21VmqK6Vg23aiW"}}
+frontend_1 | 2018-01-31T12:02:29.301225954Z {"@timestamp":"2018-01-31T12:02:29.300+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"b62eQjkNvWO9-QYJnJzeEzyl","details":{"endpoint":"GET /v1/variant/test-partner-id/BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3/crop?width=1024&height=768","transactionId":"u2O1envwmGKohI7JOocoENKS"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"b62eQjkNvWO9-QYJnJzeEzyl","details":{"endpoint":"GET /v1/variant/test-partner-id/BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3/crop?width=1024&height=768","transactionId":"u2O1envwmGKohI7JOocoENKS"}}},"contextId":"vXI0hju_gq21VmqK6Vg23aiW"}}
+frontend_1 | 2018-01-31T12:02:29.303280784Z {"@timestamp":"2018-01-31T12:02:29.302+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"6E7R1NMEkrsSrYo7ttI9NFTe","details":{}},{"name":"VariantRouting","id":"E5ZFoRCm3yAOd9fl5Skf4yrH","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"6E7R1NMEkrsSrYo7ttI9NFTe","details":{}}},"contextId":"vXI0hju_gq21VmqK6Vg23aiW"}}
+frontend_1 | 2018-01-31T12:02:29.303647677Z {"@timestamp":"2018-01-31T12:02:29.303+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"6E7R1NMEkrsSrYo7ttI9NFTe","details":{}},{"name":"VariantRouting","id":"E5ZFoRCm3yAOd9fl5Skf4yrH","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"6E7R1NMEkrsSrYo7ttI9NFTe","details":{}}},"contextId":"vXI0hju_gq21VmqK6Vg23aiW"}}
+frontend_1 | 2018-01-31T12:02:29.303939600Z {"@timestamp":"2018-01-31T12:02:29.303+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"zO-_64gFCPeQX_cyLfoHCrOD","details":{}},{"name":"VariantRouting","id":"E5ZFoRCm3yAOd9fl5Skf4yrH","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"zO-_64gFCPeQX_cyLfoHCrOD","details":{}}},"contextId":"vXI0hju_gq21VmqK6Vg23aiW"}}
+frontend_1 | 2018-01-31T12:02:29.324113607Z {"@timestamp":"2018-01-31T12:02:29.323+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"_wHGiveV-HY4SfGTGB63-kkf","details":{"endpoint":"GET /v1/variant/test-partner-id/47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21/crop?width=276&height=3","transactionId":"4ISst5VyPGZ0-xA2pwbtG17l"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"_wHGiveV-HY4SfGTGB63-kkf","details":{"endpoint":"GET /v1/variant/test-partner-id/47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21/crop?width=276&height=3","transactionId":"4ISst5VyPGZ0-xA2pwbtG17l"}}},"contextId":"KzDFjEy04nFkSmf7w5PasW0Z"}}
+frontend_1 | 2018-01-31T12:02:29.324943760Z {"@timestamp":"2018-01-31T12:02:29.324+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"VFBooZ5eTEWcEXSJWh2B_sTw","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"VFBooZ5eTEWcEXSJWh2B_sTw","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}},"contextId":"NB-TD7M1keYt6JLkIhOW0vyV"}}
+frontend_1 | 2018-01-31T12:02:29.326921868Z {"@timestamp":"2018-01-31T12:02:29.324+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"VFBooZ5eTEWcEXSJWh2B_sTw","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"VFBooZ5eTEWcEXSJWh2B_sTw","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}},"contextId":"NB-TD7M1keYt6JLkIhOW0vyV"}}
+frontend_1 | 2018-01-31T12:02:29.327358843Z {"@timestamp":"2018-01-31T12:02:29.326+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"9uGNtUsYDAjV92TYJO5Mqixn","details":{"endpoint":"GET /v1/variant/test-partner-id/A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029/crop?width=320&height=240","transactionId":"otI_dgVYYpHEfV3L27FCfmNR"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"9uGNtUsYDAjV92TYJO5Mqixn","details":{"endpoint":"GET /v1/variant/test-partner-id/A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029/crop?width=320&height=240","transactionId":"otI_dgVYYpHEfV3L27FCfmNR"}}},"contextId":"NB-TD7M1keYt6JLkIhOW0vyV"}}
+frontend_1 | 2018-01-31T12:02:29.327427872Z {"@timestamp":"2018-01-31T12:02:29.327+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"gYA5-7PEdqsOmo6ShbteUpfz","details":{"request":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F","dimensions":{"width":120,"height":80}}}},{"name":"VariantRouting","id":"ToGPS6dTzgrmvEbb7bGgPpKy","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"gYA5-7PEdqsOmo6ShbteUpfz","details":{"request":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F","dimensions":{"width":120,"height":80}}}}},"contextId":"LCrRHO1Ca5xPOM1_jxxZjCNv"}}
+frontend_1 | 2018-01-31T12:02:29.328023002Z {"@timestamp":"2018-01-31T12:02:29.324+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"CDxtmxKcKbnGcuq_avb_Qivq","details":{"partnerId":"test-partner-id","masterId":"47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"CDxtmxKcKbnGcuq_avb_Qivq","details":{"partnerId":"test-partner-id","masterId":"47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21"}}},"contextId":"KzDFjEy04nFkSmf7w5PasW0Z"}}
+frontend_1 | 2018-01-31T12:02:29.328727119Z {"@timestamp":"2018-01-31T12:02:29.328+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"kIptZhAjhb8Lv677DlwQAmUi","details":{"endpoint":"GET /health","transactionId":"yeyboCobVEyPNz1mHTTS7mKX"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"kIptZhAjhb8Lv677DlwQAmUi","details":{"endpoint":"GET /health","transactionId":"yeyboCobVEyPNz1mHTTS7mKX"}}},"contextId":"6B5zudP3CX4cg8OPrVD-jRk5"}}
+frontend_1 | 2018-01-31T12:02:29.330339984Z {"@timestamp":"2018-01-31T12:02:29.328+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"CDxtmxKcKbnGcuq_avb_Qivq","details":{"partnerId":"test-partner-id","masterId":"47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"CDxtmxKcKbnGcuq_avb_Qivq","details":{"partnerId":"test-partner-id","masterId":"47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21"}}},"contextId":"KzDFjEy04nFkSmf7w5PasW0Z"}}
+frontend_1 | 2018-01-31T12:02:29.330884383Z {"@timestamp":"2018-01-31T12:02:29.330+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"_wHGiveV-HY4SfGTGB63-kkf","details":{"endpoint":"GET /v1/variant/test-partner-id/47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21/crop?width=276&height=3","transactionId":"4ISst5VyPGZ0-xA2pwbtG17l"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"_wHGiveV-HY4SfGTGB63-kkf","details":{"endpoint":"GET /v1/variant/test-partner-id/47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21/crop?width=276&height=3","transactionId":"4ISst5VyPGZ0-xA2pwbtG17l"}}},"contextId":"KzDFjEy04nFkSmf7w5PasW0Z"}}
+frontend_1 | 2018-01-31T12:02:29.331204127Z {"@timestamp":"2018-01-31T12:02:29.329+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"kIptZhAjhb8Lv677DlwQAmUi","details":{"endpoint":"GET /health","transactionId":"yeyboCobVEyPNz1mHTTS7mKX"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"kIptZhAjhb8Lv677DlwQAmUi","details":{"endpoint":"GET /health","transactionId":"yeyboCobVEyPNz1mHTTS7mKX"}}},"contextId":"6B5zudP3CX4cg8OPrVD-jRk5"}}
+frontend_1 | 2018-01-31T12:02:29.332395801Z {"@timestamp":"2018-01-31T12:02:29.331+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"xjHI0VEpNEUfXDpNu8vh4hbD","details":{}},{"name":"VariantRouting","id":"VFBooZ5eTEWcEXSJWh2B_sTw","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"xjHI0VEpNEUfXDpNu8vh4hbD","details":{}}},"contextId":"NB-TD7M1keYt6JLkIhOW0vyV"}}
+frontend_1 | 2018-01-31T12:02:29.333016492Z {"@timestamp":"2018-01-31T12:02:29.332+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"xjHI0VEpNEUfXDpNu8vh4hbD","details":{}},{"name":"VariantRouting","id":"VFBooZ5eTEWcEXSJWh2B_sTw","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"xjHI0VEpNEUfXDpNu8vh4hbD","details":{}}},"contextId":"NB-TD7M1keYt6JLkIhOW0vyV"}}
+frontend_1 | 2018-01-31T12:02:29.333294718Z {"@timestamp":"2018-01-31T12:02:29.333+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"kGFenQhv_dWJvAnZs550cPR-","details":{}},{"name":"VariantRouting","id":"VFBooZ5eTEWcEXSJWh2B_sTw","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"kGFenQhv_dWJvAnZs550cPR-","details":{}}},"contextId":"NB-TD7M1keYt6JLkIhOW0vyV"}}
+frontend_1 | 2018-01-31T12:02:29.333625349Z {"@timestamp":"2018-01-31T12:02:29.333+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"kGFenQhv_dWJvAnZs550cPR-","details":{}},{"name":"VariantRouting","id":"VFBooZ5eTEWcEXSJWh2B_sTw","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"kGFenQhv_dWJvAnZs550cPR-","details":{}}},"contextId":"NB-TD7M1keYt6JLkIhOW0vyV"}}
+frontend_1 | 2018-01-31T12:02:29.336943877Z {"@timestamp":"2018-01-31T12:02:29.336+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"j8LF4RATGiYsNiTzg_ZwoBTb","details":{}},{"name":"VariantRouting","id":"CDxtmxKcKbnGcuq_avb_Qivq","details":{"partnerId":"test-partner-id","masterId":"47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"j8LF4RATGiYsNiTzg_ZwoBTb","details":{}}},"contextId":"KzDFjEy04nFkSmf7w5PasW0Z"}}
+frontend_1 | 2018-01-31T12:02:29.337504868Z {"@timestamp":"2018-01-31T12:02:29.337+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"VJsjFseg05oM_cze9BPdIdp6","details":{"endpoint":"GET /v1/variant/test-partner-id/8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F/crop?width=320&height=240","transactionId":"1pwIOLcPOQYCT2C41Il_76zI"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"VJsjFseg05oM_cze9BPdIdp6","details":{"endpoint":"GET /v1/variant/test-partner-id/8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F/crop?width=320&height=240","transactionId":"1pwIOLcPOQYCT2C41Il_76zI"}}},"contextId":"KpyJwlqmlpaG4anVn3FSHvt_"}}
+frontend_1 | 2018-01-31T12:02:29.338176967Z {"@timestamp":"2018-01-31T12:02:29.337+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"FV5fClmX4lkqfvZVkdArWj4N","details":{"partnerId":"test-partner-id","masterId":"8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"FV5fClmX4lkqfvZVkdArWj4N","details":{"partnerId":"test-partner-id","masterId":"8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F"}}},"contextId":"KpyJwlqmlpaG4anVn3FSHvt_"}}
+frontend_1 | 2018-01-31T12:02:29.338538618Z {"@timestamp":"2018-01-31T12:02:29.338+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"FV5fClmX4lkqfvZVkdArWj4N","details":{"partnerId":"test-partner-id","masterId":"8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"FV5fClmX4lkqfvZVkdArWj4N","details":{"partnerId":"test-partner-id","masterId":"8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F"}}},"contextId":"KpyJwlqmlpaG4anVn3FSHvt_"}}
+frontend_1 | 2018-01-31T12:02:29.338952776Z {"@timestamp":"2018-01-31T12:02:29.338+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"VJsjFseg05oM_cze9BPdIdp6","details":{"endpoint":"GET /v1/variant/test-partner-id/8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F/crop?width=320&height=240","transactionId":"1pwIOLcPOQYCT2C41Il_76zI"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"VJsjFseg05oM_cze9BPdIdp6","details":{"endpoint":"GET /v1/variant/test-partner-id/8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F/crop?width=320&height=240","transactionId":"1pwIOLcPOQYCT2C41Il_76zI"}}},"contextId":"KpyJwlqmlpaG4anVn3FSHvt_"}}
+frontend_1 | 2018-01-31T12:02:29.339742577Z {"@timestamp":"2018-01-31T12:02:29.339+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"D2rZNj9iBRVPndKfqyQWDE1s","details":{}},{"name":"VariantRouting","id":"FV5fClmX4lkqfvZVkdArWj4N","details":{"partnerId":"test-partner-id","masterId":"8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"D2rZNj9iBRVPndKfqyQWDE1s","details":{}}},"contextId":"KpyJwlqmlpaG4anVn3FSHvt_"}}
+frontend_1 | 2018-01-31T12:02:29.339963244Z {"@timestamp":"2018-01-31T12:02:29.339+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"1BcD7gHV3I5SuqjhiDkDepx7","details":{"request":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029","dimensions":{"width":320,"height":240}}}},{"name":"VariantRouting","id":"VFBooZ5eTEWcEXSJWh2B_sTw","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"1BcD7gHV3I5SuqjhiDkDepx7","details":{"request":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029","dimensions":{"width":320,"height":240}}}}},"contextId":"NB-TD7M1keYt6JLkIhOW0vyV"}}
+frontend_1 | 2018-01-31T12:02:29.340818883Z {"@timestamp":"2018-01-31T12:02:29.337+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"j8LF4RATGiYsNiTzg_ZwoBTb","details":{}},{"name":"VariantRouting","id":"CDxtmxKcKbnGcuq_avb_Qivq","details":{"partnerId":"test-partner-id","masterId":"47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"j8LF4RATGiYsNiTzg_ZwoBTb","details":{}}},"contextId":"KzDFjEy04nFkSmf7w5PasW0Z"}}
+frontend_1 | 2018-01-31T12:02:29.341205937Z {"@timestamp":"2018-01-31T12:02:29.340+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"Q8a6ugn88ET_76ahBvec0bCG","details":{}},{"name":"VariantRouting","id":"CDxtmxKcKbnGcuq_avb_Qivq","details":{"partnerId":"test-partner-id","masterId":"47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"Q8a6ugn88ET_76ahBvec0bCG","details":{}}},"contextId":"KzDFjEy04nFkSmf7w5PasW0Z"}}
+frontend_1 | 2018-01-31T12:02:29.341498584Z {"@timestamp":"2018-01-31T12:02:29.341+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"Q8a6ugn88ET_76ahBvec0bCG","details":{}},{"name":"VariantRouting","id":"CDxtmxKcKbnGcuq_avb_Qivq","details":{"partnerId":"test-partner-id","masterId":"47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"Q8a6ugn88ET_76ahBvec0bCG","details":{}}},"contextId":"KzDFjEy04nFkSmf7w5PasW0Z"}}
+frontend_1 | 2018-01-31T12:02:29.341922745Z {"@timestamp":"2018-01-31T12:02:29.341+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"7qqg1Ud6i1XCbC-AoUmJsz2B","details":{"request":{"partnerId":"test-partner-id","masterId":"47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21","dimensions":{"width":276,"height":3}}}},{"name":"VariantRouting","id":"CDxtmxKcKbnGcuq_avb_Qivq","details":{"partnerId":"test-partner-id","masterId":"47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"7qqg1Ud6i1XCbC-AoUmJsz2B","details":{"request":{"partnerId":"test-partner-id","masterId":"47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21","dimensions":{"width":276,"height":3}}}}},"contextId":"KzDFjEy04nFkSmf7w5PasW0Z"}}
+frontend_1 | 2018-01-31T12:02:29.343342884Z {"@timestamp":"2018-01-31T12:02:29.339+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"D2rZNj9iBRVPndKfqyQWDE1s","details":{}},{"name":"VariantRouting","id":"FV5fClmX4lkqfvZVkdArWj4N","details":{"partnerId":"test-partner-id","masterId":"8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"D2rZNj9iBRVPndKfqyQWDE1s","details":{}}},"contextId":"KpyJwlqmlpaG4anVn3FSHvt_"}}
+frontend_1 | 2018-01-31T12:02:29.344551744Z {"@timestamp":"2018-01-31T12:02:29.344+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"7qqg1Ud6i1XCbC-AoUmJsz2B","details":{"request":{"partnerId":"test-partner-id","masterId":"47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21","dimensions":{"width":276,"height":3}}}},{"name":"VariantRouting","id":"CDxtmxKcKbnGcuq_avb_Qivq","details":{"partnerId":"test-partner-id","masterId":"47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"7qqg1Ud6i1XCbC-AoUmJsz2B","details":{"request":{"partnerId":"test-partner-id","masterId":"47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21","dimensions":{"width":276,"height":3}}}}},"contextId":"KzDFjEy04nFkSmf7w5PasW0Z"}}
+frontend_1 | 2018-01-31T12:02:29.345530795Z {"@timestamp":"2018-01-31T12:02:29.343+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"F93R98xn0KZdgBCjFg7ZyXfr","details":{}},{"name":"VariantRouting","id":"FV5fClmX4lkqfvZVkdArWj4N","details":{"partnerId":"test-partner-id","masterId":"8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"F93R98xn0KZdgBCjFg7ZyXfr","details":{}}},"contextId":"KpyJwlqmlpaG4anVn3FSHvt_"}}
+frontend_1 | 2018-01-31T12:02:29.350122715Z {"@timestamp":"2018-01-31T12:02:29.349+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"F93R98xn0KZdgBCjFg7ZyXfr","details":{}},{"name":"VariantRouting","id":"FV5fClmX4lkqfvZVkdArWj4N","details":{"partnerId":"test-partner-id","masterId":"8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"F93R98xn0KZdgBCjFg7ZyXfr","details":{}}},"contextId":"KpyJwlqmlpaG4anVn3FSHvt_"}}
+frontend_1 | 2018-01-31T12:02:29.351509295Z {"@timestamp":"2018-01-31T12:02:29.347+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"b8vIlEunSRsxELzUUgqvlZQt","details":{"endpoint":"GET /health","transactionId":"txhxMDUVMs55PCLTtHN1htBA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"b8vIlEunSRsxELzUUgqvlZQt","details":{"endpoint":"GET /health","transactionId":"txhxMDUVMs55PCLTtHN1htBA"}}},"contextId":"csKgztjtI7iQ2uoxgetHObmO"}}
+frontend_1 | 2018-01-31T12:02:29.351955952Z {"@timestamp":"2018-01-31T12:02:29.351+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"b8vIlEunSRsxELzUUgqvlZQt","details":{"endpoint":"GET /health","transactionId":"txhxMDUVMs55PCLTtHN1htBA"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"b8vIlEunSRsxELzUUgqvlZQt","details":{"endpoint":"GET /health","transactionId":"txhxMDUVMs55PCLTtHN1htBA"}}},"contextId":"csKgztjtI7iQ2uoxgetHObmO"}}
+frontend_1 | 2018-01-31T12:02:29.357687442Z {"@timestamp":"2018-01-31T12:02:29.357+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"BaCLNyuohjMFJCyzzinf_BPM","details":{"request":{"partnerId":"test-partner-id","masterId":"8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F","dimensions":{"width":320,"height":240}}}},{"name":"VariantRouting","id":"FV5fClmX4lkqfvZVkdArWj4N","details":{"partnerId":"test-partner-id","masterId":"8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"BaCLNyuohjMFJCyzzinf_BPM","details":{"request":{"partnerId":"test-partner-id","masterId":"8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F","dimensions":{"width":320,"height":240}}}}},"contextId":"KpyJwlqmlpaG4anVn3FSHvt_"}}
+frontend_1 | 2018-01-31T12:02:29.370221616Z {"@timestamp":"2018-01-31T12:02:29.369+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"1BcD7gHV3I5SuqjhiDkDepx7","details":{"request":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029","dimensions":{"width":320,"height":240}}}},{"name":"VariantRouting","id":"VFBooZ5eTEWcEXSJWh2B_sTw","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"1BcD7gHV3I5SuqjhiDkDepx7","details":{"request":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029","dimensions":{"width":320,"height":240}}}}},"contextId":"NB-TD7M1keYt6JLkIhOW0vyV"}}
+frontend_1 | 2018-01-31T12:02:29.371776776Z {"@timestamp":"2018-01-31T12:02:29.304+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"zO-_64gFCPeQX_cyLfoHCrOD","details":{}},{"name":"VariantRouting","id":"E5ZFoRCm3yAOd9fl5Skf4yrH","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"zO-_64gFCPeQX_cyLfoHCrOD","details":{}}},"contextId":"vXI0hju_gq21VmqK6Vg23aiW"}}
+frontend_1 | 2018-01-31T12:02:29.371811371Z {"@timestamp":"2018-01-31T12:02:29.311+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"sPrvMAQCPEkIixNP42Lr6BrR","details":{"request":{"partnerId":"test-partner-id","masterId":"264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB","dimensions":{"width":240,"height":160}}}},{"name":"VariantRouting","id":"HZ-WL2tB0-LxWoYHPw835yN8","details":{"partnerId":"test-partner-id","masterId":"264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"sPrvMAQCPEkIixNP42Lr6BrR","details":{"request":{"partnerId":"test-partner-id","masterId":"264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB","dimensions":{"width":240,"height":160}}}}},"contextId":"jZID1MgNk8wqCSVthvkTRBw4"}}
+frontend_1 | 2018-01-31T12:02:29.372527104Z {"@timestamp":"2018-01-31T12:02:29.372+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"zFp0DQTJFiZ-MxZ2Z3Tj8P1i","details":{"request":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"E5ZFoRCm3yAOd9fl5Skf4yrH","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"zFp0DQTJFiZ-MxZ2Z3Tj8P1i","details":{"request":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3","dimensions":{"width":1024,"height":768}}}}},"contextId":"vXI0hju_gq21VmqK6Vg23aiW"}}
+frontend_1 | 2018-01-31T12:02:29.383197409Z {"@timestamp":"2018-01-31T12:02:29.373+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"BaCLNyuohjMFJCyzzinf_BPM","details":{"request":{"partnerId":"test-partner-id","masterId":"8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F","dimensions":{"width":320,"height":240}}}},{"name":"VariantRouting","id":"FV5fClmX4lkqfvZVkdArWj4N","details":{"partnerId":"test-partner-id","masterId":"8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"BaCLNyuohjMFJCyzzinf_BPM","details":{"request":{"partnerId":"test-partner-id","masterId":"8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F","dimensions":{"width":320,"height":240}}}}},"contextId":"KpyJwlqmlpaG4anVn3FSHvt_"}}
+frontend_1 | 2018-01-31T12:02:29.393240556Z {"@timestamp":"2018-01-31T12:02:29.392+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"zFp0DQTJFiZ-MxZ2Z3Tj8P1i","details":{"request":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"E5ZFoRCm3yAOd9fl5Skf4yrH","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"zFp0DQTJFiZ-MxZ2Z3Tj8P1i","details":{"request":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3","dimensions":{"width":1024,"height":768}}}}},"contextId":"vXI0hju_gq21VmqK6Vg23aiW"}}
+frontend_1 | 2018-01-31T12:02:29.490042701Z {"@timestamp":"2018-01-31T12:02:29.488+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"elqmsZ_9Ig52AGArzzkOilm1","details":{"endpoint":"GET /v1/variant/test-partner-id/F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75/crop?width=1024&height=768","transactionId":"nAULw1TV1ogdxCAo3rfVlSdH"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"elqmsZ_9Ig52AGArzzkOilm1","details":{"endpoint":"GET /v1/variant/test-partner-id/F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75/crop?width=1024&height=768","transactionId":"nAULw1TV1ogdxCAo3rfVlSdH"}}},"contextId":"LfWVjN2ckEnvN7o4Po41gWZH"}}
+frontend_1 | 2018-01-31T12:02:29.492455217Z {"@timestamp":"2018-01-31T12:02:29.491+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"wxuD0as8_Oa82a8yD3magR_v","details":{"partnerId":"test-partner-id","masterId":"F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"wxuD0as8_Oa82a8yD3magR_v","details":{"partnerId":"test-partner-id","masterId":"F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75"}}},"contextId":"LfWVjN2ckEnvN7o4Po41gWZH"}}
+frontend_1 | 2018-01-31T12:02:29.494386351Z {"@timestamp":"2018-01-31T12:02:29.492+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"wxuD0as8_Oa82a8yD3magR_v","details":{"partnerId":"test-partner-id","masterId":"F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"wxuD0as8_Oa82a8yD3magR_v","details":{"partnerId":"test-partner-id","masterId":"F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75"}}},"contextId":"LfWVjN2ckEnvN7o4Po41gWZH"}}
+frontend_1 | 2018-01-31T12:02:29.495002856Z {"@timestamp":"2018-01-31T12:02:29.494+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"elqmsZ_9Ig52AGArzzkOilm1","details":{"endpoint":"GET /v1/variant/test-partner-id/F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75/crop?width=1024&height=768","transactionId":"nAULw1TV1ogdxCAo3rfVlSdH"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"elqmsZ_9Ig52AGArzzkOilm1","details":{"endpoint":"GET /v1/variant/test-partner-id/F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75/crop?width=1024&height=768","transactionId":"nAULw1TV1ogdxCAo3rfVlSdH"}}},"contextId":"LfWVjN2ckEnvN7o4Po41gWZH"}}
+frontend_1 | 2018-01-31T12:02:29.501864860Z {"@timestamp":"2018-01-31T12:02:29.496+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"GpSzg7jTHsQL1tNLlZHw6Q4S","details":{}},{"name":"VariantRouting","id":"wxuD0as8_Oa82a8yD3magR_v","details":{"partnerId":"test-partner-id","masterId":"F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"GpSzg7jTHsQL1tNLlZHw6Q4S","details":{}}},"contextId":"LfWVjN2ckEnvN7o4Po41gWZH"}}
+frontend_1 | 2018-01-31T12:02:29.502490915Z {"@timestamp":"2018-01-31T12:02:29.502+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"GpSzg7jTHsQL1tNLlZHw6Q4S","details":{}},{"name":"VariantRouting","id":"wxuD0as8_Oa82a8yD3magR_v","details":{"partnerId":"test-partner-id","masterId":"F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"GpSzg7jTHsQL1tNLlZHw6Q4S","details":{}}},"contextId":"LfWVjN2ckEnvN7o4Po41gWZH"}}
+frontend_1 | 2018-01-31T12:02:29.502981139Z {"@timestamp":"2018-01-31T12:02:29.502+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"jRgzV081MLcnqI44MjGh00eW","details":{}},{"name":"VariantRouting","id":"wxuD0as8_Oa82a8yD3magR_v","details":{"partnerId":"test-partner-id","masterId":"F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"jRgzV081MLcnqI44MjGh00eW","details":{}}},"contextId":"LfWVjN2ckEnvN7o4Po41gWZH"}}
+frontend_1 | 2018-01-31T12:02:29.503535771Z {"@timestamp":"2018-01-31T12:02:29.503+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"jRgzV081MLcnqI44MjGh00eW","details":{}},{"name":"VariantRouting","id":"wxuD0as8_Oa82a8yD3magR_v","details":{"partnerId":"test-partner-id","masterId":"F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"jRgzV081MLcnqI44MjGh00eW","details":{}}},"contextId":"LfWVjN2ckEnvN7o4Po41gWZH"}}
+frontend_1 | 2018-01-31T12:02:29.504256310Z {"@timestamp":"2018-01-31T12:02:29.503+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"msLgfzdp0z4qbP8A0MNaZvXK","details":{"request":{"partnerId":"test-partner-id","masterId":"F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"wxuD0as8_Oa82a8yD3magR_v","details":{"partnerId":"test-partner-id","masterId":"F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"msLgfzdp0z4qbP8A0MNaZvXK","details":{"request":{"partnerId":"test-partner-id","masterId":"F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75","dimensions":{"width":1024,"height":768}}}}},"contextId":"LfWVjN2ckEnvN7o4Po41gWZH"}}
+frontend_1 | 2018-01-31T12:02:29.507837725Z {"@timestamp":"2018-01-31T12:02:29.505+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"DQjxDwE_7pSqiL-L8NETOsTp","details":{"endpoint":"GET /health","transactionId":"4JHtnF2QxNe8sg6DuBzVZuM5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"DQjxDwE_7pSqiL-L8NETOsTp","details":{"endpoint":"GET /health","transactionId":"4JHtnF2QxNe8sg6DuBzVZuM5"}}},"contextId":"FDW5Jqih9mig05TLO3176yvR"}}
+frontend_1 | 2018-01-31T12:02:29.508633715Z {"@timestamp":"2018-01-31T12:02:29.508+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"DQjxDwE_7pSqiL-L8NETOsTp","details":{"endpoint":"GET /health","transactionId":"4JHtnF2QxNe8sg6DuBzVZuM5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"DQjxDwE_7pSqiL-L8NETOsTp","details":{"endpoint":"GET /health","transactionId":"4JHtnF2QxNe8sg6DuBzVZuM5"}}},"contextId":"FDW5Jqih9mig05TLO3176yvR"}}
+frontend_1 | 2018-01-31T12:02:29.523080767Z {"@timestamp":"2018-01-31T12:02:29.522+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"msLgfzdp0z4qbP8A0MNaZvXK","details":{"request":{"partnerId":"test-partner-id","masterId":"F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"wxuD0as8_Oa82a8yD3magR_v","details":{"partnerId":"test-partner-id","masterId":"F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"msLgfzdp0z4qbP8A0MNaZvXK","details":{"request":{"partnerId":"test-partner-id","masterId":"F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75","dimensions":{"width":1024,"height":768}}}}},"contextId":"LfWVjN2ckEnvN7o4Po41gWZH"}}
+frontend_1 | 2018-01-31T12:02:29.527366276Z {"@timestamp":"2018-01-31T12:02:29.526+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"j64rHsX189MhNoyo8GshWykF","details":{"request":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F","dimensions":{"width":62,"height":367}}}},{"name":"VariantRouting","id":"jiXG3uEkoBUYW-u_cOdwOHeU","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"zVfIVaM8-izbmfSsrqKdwKUz"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:29.562378403Z {"@timestamp":"2018-01-31T12:02:29.558+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"gYA5-7PEdqsOmo6ShbteUpfz","details":{"request":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F","dimensions":{"width":120,"height":80}}}},{"name":"VariantRouting","id":"ToGPS6dTzgrmvEbb7bGgPpKy","details":{"partnerId":"test-partner-id","masterId":"4629A2A05560A233EDC49FF7BEE5298B49F3E4F8ABB67AAB55547ED1A95DE23F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"LCrRHO1Ca5xPOM1_jxxZjCNv"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:29.595346111Z {"@timestamp":"2018-01-31T12:02:29.594+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"eaT5_e0w5siQs6rLSgM0HEcy","details":{"request":{"partnerId":"test-partner-id","masterId":"75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803","dimensions":{"width":160,"height":160}}}},{"name":"VariantRouting","id":"PwyVIMmU_OkZUDAQ8cuJzq20","details":{"partnerId":"test-partner-id","masterId":"75EF7A85B7637C8DA53A5595E48B0F8A744E19A421255A6D7B8B0BE4B98FC803"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"UcOH6-7nA4pXwqUf442legy6"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:29.620894599Z {"@timestamp":"2018-01-31T12:02:29.613+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"sPrvMAQCPEkIixNP42Lr6BrR","details":{"request":{"partnerId":"test-partner-id","masterId":"264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB","dimensions":{"width":240,"height":160}}}},{"name":"VariantRouting","id":"HZ-WL2tB0-LxWoYHPw835yN8","details":{"partnerId":"test-partner-id","masterId":"264C5A605447F75E1F06D9505BC5A9A1B8C59DFB80799D7890305E0F82312FDB"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"jZID1MgNk8wqCSVthvkTRBw4"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:29.651067909Z {"@timestamp":"2018-01-31T12:02:29.650+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"7qqg1Ud6i1XCbC-AoUmJsz2B","details":{"request":{"partnerId":"test-partner-id","masterId":"47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21","dimensions":{"width":276,"height":3}}}},{"name":"VariantRouting","id":"CDxtmxKcKbnGcuq_avb_Qivq","details":{"partnerId":"test-partner-id","masterId":"47A46C2E38BDA4D8F2088B61AEDA517E84F23BA381E8B7EF0D9326396EC58D21"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"KzDFjEy04nFkSmf7w5PasW0Z"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:29.671867864Z {"@timestamp":"2018-01-31T12:02:29.671+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"1BcD7gHV3I5SuqjhiDkDepx7","details":{"request":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029","dimensions":{"width":320,"height":240}}}},{"name":"VariantRouting","id":"VFBooZ5eTEWcEXSJWh2B_sTw","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"NB-TD7M1keYt6JLkIhOW0vyV"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:29.680943165Z {"@timestamp":"2018-01-31T12:02:29.680+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"BaCLNyuohjMFJCyzzinf_BPM","details":{"request":{"partnerId":"test-partner-id","masterId":"8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F","dimensions":{"width":320,"height":240}}}},{"name":"VariantRouting","id":"FV5fClmX4lkqfvZVkdArWj4N","details":{"partnerId":"test-partner-id","masterId":"8929C2EC3395390BB65844241B69DD622A217646C745C25E821CCA1C4113794F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"KpyJwlqmlpaG4anVn3FSHvt_"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:29.700681114Z {"@timestamp":"2018-01-31T12:02:29.696+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"zFp0DQTJFiZ-MxZ2Z3Tj8P1i","details":{"request":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"E5ZFoRCm3yAOd9fl5Skf4yrH","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"vXI0hju_gq21VmqK6Vg23aiW"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:29.818641602Z {"@timestamp":"2018-01-31T12:02:29.817+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"msLgfzdp0z4qbP8A0MNaZvXK","details":{"request":{"partnerId":"test-partner-id","masterId":"F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"wxuD0as8_Oa82a8yD3magR_v","details":{"partnerId":"test-partner-id","masterId":"F3ED85BFB37F9124A1233FE8E88912B917A1D64DB318B8299E33AEFD8C6A2F75"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"LfWVjN2ckEnvN7o4Po41gWZH"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:31.493136288Z {"@timestamp":"2018-01-31T12:02:31.492+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"KuI6M0LS_Bp9Z70_KTV4L5O5","details":{"endpoint":"GET /health","transactionId":"i6XI_OJQNxgo1NTyLBY7fVln"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"KuI6M0LS_Bp9Z70_KTV4L5O5","details":{"endpoint":"GET /health","transactionId":"i6XI_OJQNxgo1NTyLBY7fVln"}}},"contextId":"Ikgw8bHY_xwd7jy1p2zccEpX"}}
+frontend_1 | 2018-01-31T12:02:31.493200302Z {"@timestamp":"2018-01-31T12:02:31.492+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"KuI6M0LS_Bp9Z70_KTV4L5O5","details":{"endpoint":"GET /health","transactionId":"i6XI_OJQNxgo1NTyLBY7fVln"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"KuI6M0LS_Bp9Z70_KTV4L5O5","details":{"endpoint":"GET /health","transactionId":"i6XI_OJQNxgo1NTyLBY7fVln"}}},"contextId":"Ikgw8bHY_xwd7jy1p2zccEpX"}}
+frontend_1 | 2018-01-31T12:02:31.496523518Z {"@timestamp":"2018-01-31T12:02:31.493+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"6sMa8oSBtT6tkE-gv0hUSB6I","details":{"endpoint":"GET /v1/variant/test-partner-id/33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117/crop?width=160&height=160","transactionId":"2Fy4gNe3lOu4JTHgixocxGWj"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"6sMa8oSBtT6tkE-gv0hUSB6I","details":{"endpoint":"GET /v1/variant/test-partner-id/33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117/crop?width=160&height=160","transactionId":"2Fy4gNe3lOu4JTHgixocxGWj"}}},"contextId":"zHCaYYpr5DoZs7tIF6Ol2OkF"}}
+frontend_1 | 2018-01-31T12:02:31.496598595Z {"@timestamp":"2018-01-31T12:02:31.494+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"Q7ADoZupe9V2OLhEizsNfrJg","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"Q7ADoZupe9V2OLhEizsNfrJg","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}},"contextId":"zHCaYYpr5DoZs7tIF6Ol2OkF"}}
+frontend_1 | 2018-01-31T12:02:31.496624822Z {"@timestamp":"2018-01-31T12:02:31.494+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"Q7ADoZupe9V2OLhEizsNfrJg","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"Q7ADoZupe9V2OLhEizsNfrJg","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}},"contextId":"zHCaYYpr5DoZs7tIF6Ol2OkF"}}
+frontend_1 | 2018-01-31T12:02:31.496633299Z {"@timestamp":"2018-01-31T12:02:31.494+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"6sMa8oSBtT6tkE-gv0hUSB6I","details":{"endpoint":"GET /v1/variant/test-partner-id/33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117/crop?width=160&height=160","transactionId":"2Fy4gNe3lOu4JTHgixocxGWj"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"6sMa8oSBtT6tkE-gv0hUSB6I","details":{"endpoint":"GET /v1/variant/test-partner-id/33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117/crop?width=160&height=160","transactionId":"2Fy4gNe3lOu4JTHgixocxGWj"}}},"contextId":"zHCaYYpr5DoZs7tIF6Ol2OkF"}}
+frontend_1 | 2018-01-31T12:02:31.496651356Z {"@timestamp":"2018-01-31T12:02:31.495+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"cRQSJmRUVj-0BV0tJ7bMTsws","details":{}},{"name":"VariantRouting","id":"Q7ADoZupe9V2OLhEizsNfrJg","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"cRQSJmRUVj-0BV0tJ7bMTsws","details":{}}},"contextId":"zHCaYYpr5DoZs7tIF6Ol2OkF"}}
+frontend_1 | 2018-01-31T12:02:31.496658760Z {"@timestamp":"2018-01-31T12:02:31.495+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"cRQSJmRUVj-0BV0tJ7bMTsws","details":{}},{"name":"VariantRouting","id":"Q7ADoZupe9V2OLhEizsNfrJg","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"cRQSJmRUVj-0BV0tJ7bMTsws","details":{}}},"contextId":"zHCaYYpr5DoZs7tIF6Ol2OkF"}}
+frontend_1 | 2018-01-31T12:02:31.496801521Z {"@timestamp":"2018-01-31T12:02:31.496+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"jfihpxDf20pZ_GObQFqagw37","details":{}},{"name":"VariantRouting","id":"Q7ADoZupe9V2OLhEizsNfrJg","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"jfihpxDf20pZ_GObQFqagw37","details":{}}},"contextId":"zHCaYYpr5DoZs7tIF6Ol2OkF"}}
+frontend_1 | 2018-01-31T12:02:31.497235129Z {"@timestamp":"2018-01-31T12:02:31.496+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"jfihpxDf20pZ_GObQFqagw37","details":{}},{"name":"VariantRouting","id":"Q7ADoZupe9V2OLhEizsNfrJg","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"jfihpxDf20pZ_GObQFqagw37","details":{}}},"contextId":"zHCaYYpr5DoZs7tIF6Ol2OkF"}}
+frontend_1 | 2018-01-31T12:02:31.498104893Z {"@timestamp":"2018-01-31T12:02:31.497+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"BtHW0oTzF6o5b84A3HbdzxIQ","details":{"request":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117","dimensions":{"width":160,"height":160}}}},{"name":"VariantRouting","id":"Q7ADoZupe9V2OLhEizsNfrJg","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"BtHW0oTzF6o5b84A3HbdzxIQ","details":{"request":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117","dimensions":{"width":160,"height":160}}}}},"contextId":"zHCaYYpr5DoZs7tIF6Ol2OkF"}}
+frontend_1 | 2018-01-31T12:02:31.511210866Z {"@timestamp":"2018-01-31T12:02:31.510+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"BtHW0oTzF6o5b84A3HbdzxIQ","details":{"request":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117","dimensions":{"width":160,"height":160}}}},{"name":"VariantRouting","id":"Q7ADoZupe9V2OLhEizsNfrJg","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"BtHW0oTzF6o5b84A3HbdzxIQ","details":{"request":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117","dimensions":{"width":160,"height":160}}}}},"contextId":"zHCaYYpr5DoZs7tIF6Ol2OkF"}}
+frontend_1 | 2018-01-31T12:02:31.792046069Z {"@timestamp":"2018-01-31T12:02:31.791+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logSuccess$1.apply(LoggerHelper.scala:86)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"BtHW0oTzF6o5b84A3HbdzxIQ","details":{"request":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117","dimensions":{"width":160,"height":160}}}},{"name":"VariantRouting","id":"Q7ADoZupe9V2OLhEizsNfrJg","details":{"partnerId":"test-partner-id","masterId":"33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"message":"CropMessage(PartnerId(test-partner-id),MasterId(33FF591A373C8B3B65C6946EBB052CA178D781AD413ABD092765693301A48117),Dimensions(160,160),None)","response":"VariantWorkerSuccess(Source(SourceShape(single.out(1716685740))),image/jpeg)"},"contextId":"zHCaYYpr5DoZs7tIF6Ol2OkF"}}
+frontend_1 | 2018-01-31T12:02:32.486149554Z {"@timestamp":"2018-01-31T12:02:32.485+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"vFKBVdvbxLz-a0n8uYcmnTcF","details":{"endpoint":"GET /health","transactionId":"jya3-dfVQ2Xe4Rqrg1J8gkYM"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"vFKBVdvbxLz-a0n8uYcmnTcF","details":{"endpoint":"GET /health","transactionId":"jya3-dfVQ2Xe4Rqrg1J8gkYM"}}},"contextId":"ZpkQkIvyeEBjXJDegnfElniH"}}
+frontend_1 | 2018-01-31T12:02:32.489320955Z {"@timestamp":"2018-01-31T12:02:32.488+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"OBtAlhTYoYKdCg1kwJ3db_uI","details":{"endpoint":"GET /v1/variant/test-partner-id/31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE/crop?width=800&height=600","transactionId":"vMVhbMz1fSYzviwLFhrAOW5o"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"OBtAlhTYoYKdCg1kwJ3db_uI","details":{"endpoint":"GET /v1/variant/test-partner-id/31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE/crop?width=800&height=600","transactionId":"vMVhbMz1fSYzviwLFhrAOW5o"}}},"contextId":"d3fYlqyhyM1H8Ixd2cmuegj1"}}
+frontend_1 | 2018-01-31T12:02:32.489914580Z {"@timestamp":"2018-01-31T12:02:32.489+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"PIdCn33VJGnGtGMNjktpKIeJ","details":{"partnerId":"test-partner-id","masterId":"31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"PIdCn33VJGnGtGMNjktpKIeJ","details":{"partnerId":"test-partner-id","masterId":"31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE"}}},"contextId":"d3fYlqyhyM1H8Ixd2cmuegj1"}}
+frontend_1 | 2018-01-31T12:02:32.490247540Z {"@timestamp":"2018-01-31T12:02:32.489+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"PIdCn33VJGnGtGMNjktpKIeJ","details":{"partnerId":"test-partner-id","masterId":"31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"PIdCn33VJGnGtGMNjktpKIeJ","details":{"partnerId":"test-partner-id","masterId":"31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE"}}},"contextId":"d3fYlqyhyM1H8Ixd2cmuegj1"}}
+frontend_1 | 2018-01-31T12:02:32.490623955Z {"@timestamp":"2018-01-31T12:02:32.490+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"OBtAlhTYoYKdCg1kwJ3db_uI","details":{"endpoint":"GET /v1/variant/test-partner-id/31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE/crop?width=800&height=600","transactionId":"vMVhbMz1fSYzviwLFhrAOW5o"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"OBtAlhTYoYKdCg1kwJ3db_uI","details":{"endpoint":"GET /v1/variant/test-partner-id/31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE/crop?width=800&height=600","transactionId":"vMVhbMz1fSYzviwLFhrAOW5o"}}},"contextId":"d3fYlqyhyM1H8Ixd2cmuegj1"}}
+frontend_1 | 2018-01-31T12:02:32.491682763Z {"@timestamp":"2018-01-31T12:02:32.491+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"WTJejtH9PJxX8tD1Sx2rxs4T","details":{}},{"name":"VariantRouting","id":"PIdCn33VJGnGtGMNjktpKIeJ","details":{"partnerId":"test-partner-id","masterId":"31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"WTJejtH9PJxX8tD1Sx2rxs4T","details":{}}},"contextId":"d3fYlqyhyM1H8Ixd2cmuegj1"}}
+frontend_1 | 2018-01-31T12:02:32.492584025Z {"@timestamp":"2018-01-31T12:02:32.491+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"WTJejtH9PJxX8tD1Sx2rxs4T","details":{}},{"name":"VariantRouting","id":"PIdCn33VJGnGtGMNjktpKIeJ","details":{"partnerId":"test-partner-id","masterId":"31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"WTJejtH9PJxX8tD1Sx2rxs4T","details":{}}},"contextId":"d3fYlqyhyM1H8Ixd2cmuegj1"}}
+frontend_1 | 2018-01-31T12:02:32.492881094Z {"@timestamp":"2018-01-31T12:02:32.492+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"v0BBrmOIictpXs5MtkOJUSOB","details":{}},{"name":"VariantRouting","id":"PIdCn33VJGnGtGMNjktpKIeJ","details":{"partnerId":"test-partner-id","masterId":"31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"v0BBrmOIictpXs5MtkOJUSOB","details":{}}},"contextId":"d3fYlqyhyM1H8Ixd2cmuegj1"}}
+frontend_1 | 2018-01-31T12:02:32.493321049Z {"@timestamp":"2018-01-31T12:02:32.493+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"v0BBrmOIictpXs5MtkOJUSOB","details":{}},{"name":"VariantRouting","id":"PIdCn33VJGnGtGMNjktpKIeJ","details":{"partnerId":"test-partner-id","masterId":"31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"v0BBrmOIictpXs5MtkOJUSOB","details":{}}},"contextId":"d3fYlqyhyM1H8Ixd2cmuegj1"}}
+frontend_1 | 2018-01-31T12:02:32.493815071Z {"@timestamp":"2018-01-31T12:02:32.493+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"GaXc7msn_pTWTW-xQjByQs0i","details":{"request":{"partnerId":"test-partner-id","masterId":"31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE","dimensions":{"width":800,"height":600}}}},{"name":"VariantRouting","id":"PIdCn33VJGnGtGMNjktpKIeJ","details":{"partnerId":"test-partner-id","masterId":"31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"GaXc7msn_pTWTW-xQjByQs0i","details":{"request":{"partnerId":"test-partner-id","masterId":"31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE","dimensions":{"width":800,"height":600}}}}},"contextId":"d3fYlqyhyM1H8Ixd2cmuegj1"}}
+frontend_1 | 2018-01-31T12:02:32.495051583Z {"@timestamp":"2018-01-31T12:02:32.494+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"GaXc7msn_pTWTW-xQjByQs0i","details":{"request":{"partnerId":"test-partner-id","masterId":"31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE","dimensions":{"width":800,"height":600}}}},{"name":"VariantRouting","id":"PIdCn33VJGnGtGMNjktpKIeJ","details":{"partnerId":"test-partner-id","masterId":"31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"GaXc7msn_pTWTW-xQjByQs0i","details":{"request":{"partnerId":"test-partner-id","masterId":"31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE","dimensions":{"width":800,"height":600}}}}},"contextId":"d3fYlqyhyM1H8Ixd2cmuegj1"}}
+frontend_1 | 2018-01-31T12:02:32.503740928Z {"@timestamp":"2018-01-31T12:02:32.503+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"vFKBVdvbxLz-a0n8uYcmnTcF","details":{"endpoint":"GET /health","transactionId":"jya3-dfVQ2Xe4Rqrg1J8gkYM"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"vFKBVdvbxLz-a0n8uYcmnTcF","details":{"endpoint":"GET /health","transactionId":"jya3-dfVQ2Xe4Rqrg1J8gkYM"}}},"contextId":"ZpkQkIvyeEBjXJDegnfElniH"}}
+frontend_1 | 2018-01-31T12:02:32.804098609Z {"@timestamp":"2018-01-31T12:02:32.803+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"GaXc7msn_pTWTW-xQjByQs0i","details":{"request":{"partnerId":"test-partner-id","masterId":"31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE","dimensions":{"width":800,"height":600}}}},{"name":"VariantRouting","id":"PIdCn33VJGnGtGMNjktpKIeJ","details":{"partnerId":"test-partner-id","masterId":"31D07AADACBC05B83D449D48768D953DDAB04A48F67A13DDE4D4AE1AA66FD6BE"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"d3fYlqyhyM1H8Ixd2cmuegj1"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:33.495398321Z {"@timestamp":"2018-01-31T12:02:33.494+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"ita7HhgF-tRdgZTSY6zHWPxh","details":{"endpoint":"GET /v1/variant/test-partner-id/13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36/crop?width=460&height=308","transactionId":"auAQ0RJgIcnzbhIlPSFif_U0"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"ita7HhgF-tRdgZTSY6zHWPxh","details":{"endpoint":"GET /v1/variant/test-partner-id/13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36/crop?width=460&height=308","transactionId":"auAQ0RJgIcnzbhIlPSFif_U0"}}},"contextId":"-JpVSZx4PWYPlgvg7N2EPV8B"}}
+frontend_1 | 2018-01-31T12:02:33.497877472Z {"@timestamp":"2018-01-31T12:02:33.495+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"Xc5WK5jYPPEXidKoO19HM3U1","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"Xc5WK5jYPPEXidKoO19HM3U1","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}},"contextId":"-JpVSZx4PWYPlgvg7N2EPV8B"}}
+frontend_1 | 2018-01-31T12:02:33.497906285Z {"@timestamp":"2018-01-31T12:02:33.496+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"Xc5WK5jYPPEXidKoO19HM3U1","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"Xc5WK5jYPPEXidKoO19HM3U1","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}},"contextId":"-JpVSZx4PWYPlgvg7N2EPV8B"}}
+frontend_1 | 2018-01-31T12:02:33.497915712Z {"@timestamp":"2018-01-31T12:02:33.496+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"ita7HhgF-tRdgZTSY6zHWPxh","details":{"endpoint":"GET /v1/variant/test-partner-id/13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36/crop?width=460&height=308","transactionId":"auAQ0RJgIcnzbhIlPSFif_U0"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"ita7HhgF-tRdgZTSY6zHWPxh","details":{"endpoint":"GET /v1/variant/test-partner-id/13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36/crop?width=460&height=308","transactionId":"auAQ0RJgIcnzbhIlPSFif_U0"}}},"contextId":"-JpVSZx4PWYPlgvg7N2EPV8B"}}
+frontend_1 | 2018-01-31T12:02:33.501676975Z {"@timestamp":"2018-01-31T12:02:33.498+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"gxzmKOV5289B8YjtIUc5pMFd","details":{}},{"name":"VariantRouting","id":"Xc5WK5jYPPEXidKoO19HM3U1","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"gxzmKOV5289B8YjtIUc5pMFd","details":{}}},"contextId":"-JpVSZx4PWYPlgvg7N2EPV8B"}}
+frontend_1 | 2018-01-31T12:02:33.501704320Z {"@timestamp":"2018-01-31T12:02:33.498+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"gxzmKOV5289B8YjtIUc5pMFd","details":{}},{"name":"VariantRouting","id":"Xc5WK5jYPPEXidKoO19HM3U1","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"gxzmKOV5289B8YjtIUc5pMFd","details":{}}},"contextId":"-JpVSZx4PWYPlgvg7N2EPV8B"}}
+frontend_1 | 2018-01-31T12:02:33.501719206Z {"@timestamp":"2018-01-31T12:02:33.499+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"mr2kI700uZyLOe9EfS37iQXm","details":{}},{"name":"VariantRouting","id":"Xc5WK5jYPPEXidKoO19HM3U1","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"mr2kI700uZyLOe9EfS37iQXm","details":{}}},"contextId":"-JpVSZx4PWYPlgvg7N2EPV8B"}}
+frontend_1 | 2018-01-31T12:02:33.501735121Z {"@timestamp":"2018-01-31T12:02:33.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"mr2kI700uZyLOe9EfS37iQXm","details":{}},{"name":"VariantRouting","id":"Xc5WK5jYPPEXidKoO19HM3U1","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"mr2kI700uZyLOe9EfS37iQXm","details":{}}},"contextId":"-JpVSZx4PWYPlgvg7N2EPV8B"}}
+frontend_1 | 2018-01-31T12:02:33.501742923Z {"@timestamp":"2018-01-31T12:02:33.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"68O20rmJmBeJnWsQPkOKx_B9","details":{"endpoint":"GET /health","transactionId":"LMpmzwlmVc5JTgpu4XpsjNUt"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"68O20rmJmBeJnWsQPkOKx_B9","details":{"endpoint":"GET /health","transactionId":"LMpmzwlmVc5JTgpu4XpsjNUt"}}},"contextId":"ffilecvLw1mnIkhm3xsPJREj"}}
+frontend_1 | 2018-01-31T12:02:33.501749499Z {"@timestamp":"2018-01-31T12:02:33.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"68O20rmJmBeJnWsQPkOKx_B9","details":{"endpoint":"GET /health","transactionId":"LMpmzwlmVc5JTgpu4XpsjNUt"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"68O20rmJmBeJnWsQPkOKx_B9","details":{"endpoint":"GET /health","transactionId":"LMpmzwlmVc5JTgpu4XpsjNUt"}}},"contextId":"ffilecvLw1mnIkhm3xsPJREj"}}
+frontend_1 | 2018-01-31T12:02:33.501756188Z {"@timestamp":"2018-01-31T12:02:33.501+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"sR5hfvGdf-Z1vWw0Tvzf99k9","details":{"request":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36","dimensions":{"width":460,"height":308}}}},{"name":"VariantRouting","id":"Xc5WK5jYPPEXidKoO19HM3U1","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"sR5hfvGdf-Z1vWw0Tvzf99k9","details":{"request":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36","dimensions":{"width":460,"height":308}}}}},"contextId":"-JpVSZx4PWYPlgvg7N2EPV8B"}}
+frontend_1 | 2018-01-31T12:02:33.510501783Z {"@timestamp":"2018-01-31T12:02:33.510+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"sR5hfvGdf-Z1vWw0Tvzf99k9","details":{"request":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36","dimensions":{"width":460,"height":308}}}},{"name":"VariantRouting","id":"Xc5WK5jYPPEXidKoO19HM3U1","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"sR5hfvGdf-Z1vWw0Tvzf99k9","details":{"request":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36","dimensions":{"width":460,"height":308}}}}},"contextId":"-JpVSZx4PWYPlgvg7N2EPV8B"}}
+frontend_1 | 2018-01-31T12:02:33.812165913Z {"@timestamp":"2018-01-31T12:02:33.811+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"sR5hfvGdf-Z1vWw0Tvzf99k9","details":{"request":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36","dimensions":{"width":460,"height":308}}}},{"name":"VariantRouting","id":"Xc5WK5jYPPEXidKoO19HM3U1","details":{"partnerId":"test-partner-id","masterId":"13725AF0ECDCEDD51C163BD16893FB293FDCC9F5247C24CBFA11A7771FE8EF36"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"-JpVSZx4PWYPlgvg7N2EPV8B"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:35.489378237Z {"@timestamp":"2018-01-31T12:02:35.488+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"XWGvK1i_qNJNtyAnOyJABwLh","details":{"endpoint":"GET /health","transactionId":"MvqfsmLrw-f6wH0l0Pw0wS4Y"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"XWGvK1i_qNJNtyAnOyJABwLh","details":{"endpoint":"GET /health","transactionId":"MvqfsmLrw-f6wH0l0Pw0wS4Y"}}},"contextId":"njGK0hnGGh3htp1TgTV8miBV"}}
+frontend_1 | 2018-01-31T12:02:35.492282377Z {"@timestamp":"2018-01-31T12:02:35.489+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"XWGvK1i_qNJNtyAnOyJABwLh","details":{"endpoint":"GET /health","transactionId":"MvqfsmLrw-f6wH0l0Pw0wS4Y"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"XWGvK1i_qNJNtyAnOyJABwLh","details":{"endpoint":"GET /health","transactionId":"MvqfsmLrw-f6wH0l0Pw0wS4Y"}}},"contextId":"njGK0hnGGh3htp1TgTV8miBV"}}
+frontend_1 | 2018-01-31T12:02:35.493135409Z {"@timestamp":"2018-01-31T12:02:35.492+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"khJNAZL2hJB-zG9tDHrOfmd3","details":{"endpoint":"GET /v1/variant/test-partner-id/A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029/crop?width=1920&height=1080","transactionId":"qdY4kq7b5No1-sjEk7VjqaVM"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"khJNAZL2hJB-zG9tDHrOfmd3","details":{"endpoint":"GET /v1/variant/test-partner-id/A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029/crop?width=1920&height=1080","transactionId":"qdY4kq7b5No1-sjEk7VjqaVM"}}},"contextId":"wxzZjJ8gVFRPwjVgWznmx8s-"}}
+frontend_1 | 2018-01-31T12:02:35.493991694Z {"@timestamp":"2018-01-31T12:02:35.493+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"-DMIm7mOydNrMqGP25X3oeDv","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"-DMIm7mOydNrMqGP25X3oeDv","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}},"contextId":"wxzZjJ8gVFRPwjVgWznmx8s-"}}
+frontend_1 | 2018-01-31T12:02:35.495002479Z {"@timestamp":"2018-01-31T12:02:35.494+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"-DMIm7mOydNrMqGP25X3oeDv","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"-DMIm7mOydNrMqGP25X3oeDv","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}},"contextId":"wxzZjJ8gVFRPwjVgWznmx8s-"}}
+frontend_1 | 2018-01-31T12:02:35.495573717Z {"@timestamp":"2018-01-31T12:02:35.495+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"khJNAZL2hJB-zG9tDHrOfmd3","details":{"endpoint":"GET /v1/variant/test-partner-id/A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029/crop?width=1920&height=1080","transactionId":"qdY4kq7b5No1-sjEk7VjqaVM"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"khJNAZL2hJB-zG9tDHrOfmd3","details":{"endpoint":"GET /v1/variant/test-partner-id/A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029/crop?width=1920&height=1080","transactionId":"qdY4kq7b5No1-sjEk7VjqaVM"}}},"contextId":"wxzZjJ8gVFRPwjVgWznmx8s-"}}
+frontend_1 | 2018-01-31T12:02:35.496266564Z {"@timestamp":"2018-01-31T12:02:35.495+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"Z_YvkUEGOwZ3JKDLBN27g1bm","details":{}},{"name":"VariantRouting","id":"-DMIm7mOydNrMqGP25X3oeDv","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"Z_YvkUEGOwZ3JKDLBN27g1bm","details":{}}},"contextId":"wxzZjJ8gVFRPwjVgWznmx8s-"}}
+frontend_1 | 2018-01-31T12:02:35.496766041Z {"@timestamp":"2018-01-31T12:02:35.496+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"Z_YvkUEGOwZ3JKDLBN27g1bm","details":{}},{"name":"VariantRouting","id":"-DMIm7mOydNrMqGP25X3oeDv","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"Z_YvkUEGOwZ3JKDLBN27g1bm","details":{}}},"contextId":"wxzZjJ8gVFRPwjVgWznmx8s-"}}
+frontend_1 | 2018-01-31T12:02:35.497051010Z {"@timestamp":"2018-01-31T12:02:35.496+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"3yWKVfxjXC3Et4NCy8lYKj0Y","details":{}},{"name":"VariantRouting","id":"-DMIm7mOydNrMqGP25X3oeDv","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"3yWKVfxjXC3Et4NCy8lYKj0Y","details":{}}},"contextId":"wxzZjJ8gVFRPwjVgWznmx8s-"}}
+frontend_1 | 2018-01-31T12:02:35.497440089Z {"@timestamp":"2018-01-31T12:02:35.497+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"3yWKVfxjXC3Et4NCy8lYKj0Y","details":{}},{"name":"VariantRouting","id":"-DMIm7mOydNrMqGP25X3oeDv","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"3yWKVfxjXC3Et4NCy8lYKj0Y","details":{}}},"contextId":"wxzZjJ8gVFRPwjVgWznmx8s-"}}
+frontend_1 | 2018-01-31T12:02:35.497985879Z {"@timestamp":"2018-01-31T12:02:35.497+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"zlVFdh7tOmoes63RtKD6C3OM","details":{"request":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029","dimensions":{"width":1920,"height":1080}}}},{"name":"VariantRouting","id":"-DMIm7mOydNrMqGP25X3oeDv","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"zlVFdh7tOmoes63RtKD6C3OM","details":{"request":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029","dimensions":{"width":1920,"height":1080}}}}},"contextId":"wxzZjJ8gVFRPwjVgWznmx8s-"}}
+frontend_1 | 2018-01-31T12:02:35.500384118Z {"@timestamp":"2018-01-31T12:02:35.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"zlVFdh7tOmoes63RtKD6C3OM","details":{"request":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029","dimensions":{"width":1920,"height":1080}}}},{"name":"VariantRouting","id":"-DMIm7mOydNrMqGP25X3oeDv","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"zlVFdh7tOmoes63RtKD6C3OM","details":{"request":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029","dimensions":{"width":1920,"height":1080}}}}},"contextId":"wxzZjJ8gVFRPwjVgWznmx8s-"}}
+frontend_1 | 2018-01-31T12:02:35.801998127Z {"@timestamp":"2018-01-31T12:02:35.801+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"zlVFdh7tOmoes63RtKD6C3OM","details":{"request":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029","dimensions":{"width":1920,"height":1080}}}},{"name":"VariantRouting","id":"-DMIm7mOydNrMqGP25X3oeDv","details":{"partnerId":"test-partner-id","masterId":"A57E4E75104258C1A1878277FA15CB420BD3AFF3608D99B5F066C03ACA092029"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"wxzZjJ8gVFRPwjVgWznmx8s-"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:36.491592141Z {"@timestamp":"2018-01-31T12:02:36.490+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"Sht5MHJwT07ezQig0FX7mHER","details":{"endpoint":"GET /health","transactionId":"HA82DONoDjzf8uGDAuaOeaKR"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"Sht5MHJwT07ezQig0FX7mHER","details":{"endpoint":"GET /health","transactionId":"HA82DONoDjzf8uGDAuaOeaKR"}}},"contextId":"4pDi6ilSbJTVGsnvGLOFGaZ2"}}
+frontend_1 | 2018-01-31T12:02:36.492079445Z {"@timestamp":"2018-01-31T12:02:36.491+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"Sht5MHJwT07ezQig0FX7mHER","details":{"endpoint":"GET /health","transactionId":"HA82DONoDjzf8uGDAuaOeaKR"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"Sht5MHJwT07ezQig0FX7mHER","details":{"endpoint":"GET /health","transactionId":"HA82DONoDjzf8uGDAuaOeaKR"}}},"contextId":"4pDi6ilSbJTVGsnvGLOFGaZ2"}}
+frontend_1 | 2018-01-31T12:02:36.492148833Z {"@timestamp":"2018-01-31T12:02:36.491+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"6PupJdiJ1tBVP2yWw3LNLqTf","details":{"endpoint":"GET /v1/variant/test-partner-id/3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08/crop?width=220&height=148","transactionId":"BigBbGsDBR2yj7GSMDrukRUr"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"6PupJdiJ1tBVP2yWw3LNLqTf","details":{"endpoint":"GET /v1/variant/test-partner-id/3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08/crop?width=220&height=148","transactionId":"BigBbGsDBR2yj7GSMDrukRUr"}}},"contextId":"aM6r5E1wdO1fPeSBSWq7qo_i"}}
+frontend_1 | 2018-01-31T12:02:36.492424548Z {"@timestamp":"2018-01-31T12:02:36.492+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"earRP_dAEIcCfTIjVy73EZm4","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"earRP_dAEIcCfTIjVy73EZm4","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}},"contextId":"aM6r5E1wdO1fPeSBSWq7qo_i"}}
+frontend_1 | 2018-01-31T12:02:36.492659310Z {"@timestamp":"2018-01-31T12:02:36.492+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"earRP_dAEIcCfTIjVy73EZm4","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"earRP_dAEIcCfTIjVy73EZm4","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}},"contextId":"aM6r5E1wdO1fPeSBSWq7qo_i"}}
+frontend_1 | 2018-01-31T12:02:36.492918567Z {"@timestamp":"2018-01-31T12:02:36.492+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"6PupJdiJ1tBVP2yWw3LNLqTf","details":{"endpoint":"GET /v1/variant/test-partner-id/3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08/crop?width=220&height=148","transactionId":"BigBbGsDBR2yj7GSMDrukRUr"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"6PupJdiJ1tBVP2yWw3LNLqTf","details":{"endpoint":"GET /v1/variant/test-partner-id/3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08/crop?width=220&height=148","transactionId":"BigBbGsDBR2yj7GSMDrukRUr"}}},"contextId":"aM6r5E1wdO1fPeSBSWq7qo_i"}}
+frontend_1 | 2018-01-31T12:02:36.493535916Z {"@timestamp":"2018-01-31T12:02:36.493+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"j-A5nlUsUyUgueY3qACtlmp1","details":{}},{"name":"VariantRouting","id":"earRP_dAEIcCfTIjVy73EZm4","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"j-A5nlUsUyUgueY3qACtlmp1","details":{}}},"contextId":"aM6r5E1wdO1fPeSBSWq7qo_i"}}
+frontend_1 | 2018-01-31T12:02:36.493838733Z {"@timestamp":"2018-01-31T12:02:36.493+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"j-A5nlUsUyUgueY3qACtlmp1","details":{}},{"name":"VariantRouting","id":"earRP_dAEIcCfTIjVy73EZm4","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"j-A5nlUsUyUgueY3qACtlmp1","details":{}}},"contextId":"aM6r5E1wdO1fPeSBSWq7qo_i"}}
+frontend_1 | 2018-01-31T12:02:36.494242620Z {"@timestamp":"2018-01-31T12:02:36.493+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"rFZZx9evpUjbWvHaRLGpaLO5","details":{}},{"name":"VariantRouting","id":"earRP_dAEIcCfTIjVy73EZm4","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"rFZZx9evpUjbWvHaRLGpaLO5","details":{}}},"contextId":"aM6r5E1wdO1fPeSBSWq7qo_i"}}
+frontend_1 | 2018-01-31T12:02:36.494627969Z {"@timestamp":"2018-01-31T12:02:36.494+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"rFZZx9evpUjbWvHaRLGpaLO5","details":{}},{"name":"VariantRouting","id":"earRP_dAEIcCfTIjVy73EZm4","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"rFZZx9evpUjbWvHaRLGpaLO5","details":{}}},"contextId":"aM6r5E1wdO1fPeSBSWq7qo_i"}}
+frontend_1 | 2018-01-31T12:02:36.495620040Z {"@timestamp":"2018-01-31T12:02:36.495+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"a84-tmj-jPKaVnMUG3ovRW7f","details":{"request":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08","dimensions":{"width":220,"height":148}}}},{"name":"VariantRouting","id":"earRP_dAEIcCfTIjVy73EZm4","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"a84-tmj-jPKaVnMUG3ovRW7f","details":{"request":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08","dimensions":{"width":220,"height":148}}}}},"contextId":"aM6r5E1wdO1fPeSBSWq7qo_i"}}
+frontend_1 | 2018-01-31T12:02:36.501474859Z {"@timestamp":"2018-01-31T12:02:36.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"a84-tmj-jPKaVnMUG3ovRW7f","details":{"request":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08","dimensions":{"width":220,"height":148}}}},{"name":"VariantRouting","id":"earRP_dAEIcCfTIjVy73EZm4","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"a84-tmj-jPKaVnMUG3ovRW7f","details":{"request":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08","dimensions":{"width":220,"height":148}}}}},"contextId":"aM6r5E1wdO1fPeSBSWq7qo_i"}}
+frontend_1 | 2018-01-31T12:02:36.539781324Z {"@timestamp":"2018-01-31T12:02:36.539+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logSuccess$1.apply(LoggerHelper.scala:86)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"a84-tmj-jPKaVnMUG3ovRW7f","details":{"request":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08","dimensions":{"width":220,"height":148}}}},{"name":"VariantRouting","id":"earRP_dAEIcCfTIjVy73EZm4","details":{"partnerId":"test-partner-id","masterId":"3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"message":"CropMessage(PartnerId(test-partner-id),MasterId(3144A34C963FF931BB9A0AB0D954AC12C8E8F73942563CCA23D65E7DE988AA08),Dimensions(220,148),None)","response":"VariantWorkerSuccess(Source(SourceShape(single.out(698901293))),image/jpeg)"},"contextId":"aM6r5E1wdO1fPeSBSWq7qo_i"}}
+frontend_1 | 2018-01-31T12:02:37.490733613Z {"@timestamp":"2018-01-31T12:02:37.490+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"R-wTmgVbHR68E4LOCgCADRh1","details":{"endpoint":"GET /health","transactionId":"QyUq5O08BI76Rhc8gxilWvM-"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"R-wTmgVbHR68E4LOCgCADRh1","details":{"endpoint":"GET /health","transactionId":"QyUq5O08BI76Rhc8gxilWvM-"}}},"contextId":"N7RYs3feIq2daLE1wOJcdaPj"}}
+frontend_1 | 2018-01-31T12:02:37.492699204Z {"@timestamp":"2018-01-31T12:02:37.491+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"R-wTmgVbHR68E4LOCgCADRh1","details":{"endpoint":"GET /health","transactionId":"QyUq5O08BI76Rhc8gxilWvM-"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"R-wTmgVbHR68E4LOCgCADRh1","details":{"endpoint":"GET /health","transactionId":"QyUq5O08BI76Rhc8gxilWvM-"}}},"contextId":"N7RYs3feIq2daLE1wOJcdaPj"}}
+frontend_1 | 2018-01-31T12:02:37.494398325Z {"@timestamp":"2018-01-31T12:02:37.494+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"WrrIScxrlQlSPy_W8wKfsUpJ","details":{"endpoint":"GET /v1/variant/test-partner-id/BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5/crop?width=160&height=160","transactionId":"11b2HkXZD7DwCkybVWWkQMYX"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"WrrIScxrlQlSPy_W8wKfsUpJ","details":{"endpoint":"GET /v1/variant/test-partner-id/BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5/crop?width=160&height=160","transactionId":"11b2HkXZD7DwCkybVWWkQMYX"}}},"contextId":"T5PPGTaDhjq28JMXx3uU6S8h"}}
+frontend_1 | 2018-01-31T12:02:37.495057337Z {"@timestamp":"2018-01-31T12:02:37.494+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"bvGmMZQivsitopTy-BWAnKYP","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"bvGmMZQivsitopTy-BWAnKYP","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}},"contextId":"T5PPGTaDhjq28JMXx3uU6S8h"}}
+frontend_1 | 2018-01-31T12:02:37.496963306Z {"@timestamp":"2018-01-31T12:02:37.495+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"bvGmMZQivsitopTy-BWAnKYP","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"bvGmMZQivsitopTy-BWAnKYP","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}},"contextId":"T5PPGTaDhjq28JMXx3uU6S8h"}}
+frontend_1 | 2018-01-31T12:02:37.498050357Z {"@timestamp":"2018-01-31T12:02:37.497+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"WrrIScxrlQlSPy_W8wKfsUpJ","details":{"endpoint":"GET /v1/variant/test-partner-id/BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5/crop?width=160&height=160","transactionId":"11b2HkXZD7DwCkybVWWkQMYX"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"WrrIScxrlQlSPy_W8wKfsUpJ","details":{"endpoint":"GET /v1/variant/test-partner-id/BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5/crop?width=160&height=160","transactionId":"11b2HkXZD7DwCkybVWWkQMYX"}}},"contextId":"T5PPGTaDhjq28JMXx3uU6S8h"}}
+frontend_1 | 2018-01-31T12:02:37.499580150Z {"@timestamp":"2018-01-31T12:02:37.499+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"_3vawJWxTfzB_hLIjYpIlnwA","details":{}},{"name":"VariantRouting","id":"bvGmMZQivsitopTy-BWAnKYP","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"_3vawJWxTfzB_hLIjYpIlnwA","details":{}}},"contextId":"T5PPGTaDhjq28JMXx3uU6S8h"}}
+frontend_1 | 2018-01-31T12:02:37.500409137Z {"@timestamp":"2018-01-31T12:02:37.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"_3vawJWxTfzB_hLIjYpIlnwA","details":{}},{"name":"VariantRouting","id":"bvGmMZQivsitopTy-BWAnKYP","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"_3vawJWxTfzB_hLIjYpIlnwA","details":{}}},"contextId":"T5PPGTaDhjq28JMXx3uU6S8h"}}
+frontend_1 | 2018-01-31T12:02:37.500913845Z {"@timestamp":"2018-01-31T12:02:37.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"dFeS-qBOMtJluLW6-KYveTAH","details":{}},{"name":"VariantRouting","id":"bvGmMZQivsitopTy-BWAnKYP","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"dFeS-qBOMtJluLW6-KYveTAH","details":{}}},"contextId":"T5PPGTaDhjq28JMXx3uU6S8h"}}
+frontend_1 | 2018-01-31T12:02:37.501674171Z {"@timestamp":"2018-01-31T12:02:37.501+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"dFeS-qBOMtJluLW6-KYveTAH","details":{}},{"name":"VariantRouting","id":"bvGmMZQivsitopTy-BWAnKYP","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"dFeS-qBOMtJluLW6-KYveTAH","details":{}}},"contextId":"T5PPGTaDhjq28JMXx3uU6S8h"}}
+frontend_1 | 2018-01-31T12:02:37.502416293Z {"@timestamp":"2018-01-31T12:02:37.501+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"06oGzj1hSBoIrNhzttieZ5f5","details":{"request":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5","dimensions":{"width":160,"height":160}}}},{"name":"VariantRouting","id":"bvGmMZQivsitopTy-BWAnKYP","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"06oGzj1hSBoIrNhzttieZ5f5","details":{"request":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5","dimensions":{"width":160,"height":160}}}}},"contextId":"T5PPGTaDhjq28JMXx3uU6S8h"}}
+frontend_1 | 2018-01-31T12:02:37.504708868Z {"@timestamp":"2018-01-31T12:02:37.503+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"06oGzj1hSBoIrNhzttieZ5f5","details":{"request":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5","dimensions":{"width":160,"height":160}}}},{"name":"VariantRouting","id":"bvGmMZQivsitopTy-BWAnKYP","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"06oGzj1hSBoIrNhzttieZ5f5","details":{"request":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5","dimensions":{"width":160,"height":160}}}}},"contextId":"T5PPGTaDhjq28JMXx3uU6S8h"}}
+frontend_1 | 2018-01-31T12:02:37.652891215Z {"@timestamp":"2018-01-31T12:02:37.652+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logSuccess$1.apply(LoggerHelper.scala:86)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"06oGzj1hSBoIrNhzttieZ5f5","details":{"request":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5","dimensions":{"width":160,"height":160}}}},{"name":"VariantRouting","id":"bvGmMZQivsitopTy-BWAnKYP","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"message":"CropMessage(PartnerId(test-partner-id),MasterId(BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5),Dimensions(160,160),None)","response":"VariantWorkerSuccess(Source(SourceShape(single.out(593244719))),image/jpeg)"},"contextId":"T5PPGTaDhjq28JMXx3uU6S8h"}}
+frontend_1 | 2018-01-31T12:02:39.498172008Z {"@timestamp":"2018-01-31T12:02:39.497+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"R6XahROstlEgrUTaqOBVEjyi","details":{"endpoint":"GET /health","transactionId":"DU0zqAWx0x2HEqZ35ckOFvBL"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"R6XahROstlEgrUTaqOBVEjyi","details":{"endpoint":"GET /health","transactionId":"DU0zqAWx0x2HEqZ35ckOFvBL"}}},"contextId":"Uw81jRMmmA6RFEA4qopYDQe6"}}
+frontend_1 | 2018-01-31T12:02:39.498584334Z {"@timestamp":"2018-01-31T12:02:39.498+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"R6XahROstlEgrUTaqOBVEjyi","details":{"endpoint":"GET /health","transactionId":"DU0zqAWx0x2HEqZ35ckOFvBL"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"R6XahROstlEgrUTaqOBVEjyi","details":{"endpoint":"GET /health","transactionId":"DU0zqAWx0x2HEqZ35ckOFvBL"}}},"contextId":"Uw81jRMmmA6RFEA4qopYDQe6"}}
+frontend_1 | 2018-01-31T12:02:39.508583629Z {"@timestamp":"2018-01-31T12:02:39.507+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"6xQiclN6bucbn4hTf_8OwUcE","details":{"endpoint":"GET /v1/variant/test-partner-id/BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5/crop?width=160&height=108","transactionId":"2xYApXT6JG-axgZ4hLfHQwrK"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"6xQiclN6bucbn4hTf_8OwUcE","details":{"endpoint":"GET /v1/variant/test-partner-id/BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5/crop?width=160&height=108","transactionId":"2xYApXT6JG-axgZ4hLfHQwrK"}}},"contextId":"VwNLocoXM0GIMKSg4uscb-gW"}}
+frontend_1 | 2018-01-31T12:02:39.511894284Z {"@timestamp":"2018-01-31T12:02:39.511+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"l4g9jsLZYuwrDGlwj2JdMNJj","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"l4g9jsLZYuwrDGlwj2JdMNJj","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}},"contextId":"VwNLocoXM0GIMKSg4uscb-gW"}}
+frontend_1 | 2018-01-31T12:02:39.515047269Z {"@timestamp":"2018-01-31T12:02:39.511+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"l4g9jsLZYuwrDGlwj2JdMNJj","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"l4g9jsLZYuwrDGlwj2JdMNJj","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}},"contextId":"VwNLocoXM0GIMKSg4uscb-gW"}}
+frontend_1 | 2018-01-31T12:02:39.515497388Z {"@timestamp":"2018-01-31T12:02:39.515+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"6xQiclN6bucbn4hTf_8OwUcE","details":{"endpoint":"GET /v1/variant/test-partner-id/BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5/crop?width=160&height=108","transactionId":"2xYApXT6JG-axgZ4hLfHQwrK"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"6xQiclN6bucbn4hTf_8OwUcE","details":{"endpoint":"GET /v1/variant/test-partner-id/BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5/crop?width=160&height=108","transactionId":"2xYApXT6JG-axgZ4hLfHQwrK"}}},"contextId":"VwNLocoXM0GIMKSg4uscb-gW"}}
+frontend_1 | 2018-01-31T12:02:39.517015184Z {"@timestamp":"2018-01-31T12:02:39.516+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"a1S4AcLDMf23RFLs5v834H8_","details":{}},{"name":"VariantRouting","id":"l4g9jsLZYuwrDGlwj2JdMNJj","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"a1S4AcLDMf23RFLs5v834H8_","details":{}}},"contextId":"VwNLocoXM0GIMKSg4uscb-gW"}}
+frontend_1 | 2018-01-31T12:02:39.517847813Z {"@timestamp":"2018-01-31T12:02:39.517+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"a1S4AcLDMf23RFLs5v834H8_","details":{}},{"name":"VariantRouting","id":"l4g9jsLZYuwrDGlwj2JdMNJj","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"a1S4AcLDMf23RFLs5v834H8_","details":{}}},"contextId":"VwNLocoXM0GIMKSg4uscb-gW"}}
+frontend_1 | 2018-01-31T12:02:39.518248185Z {"@timestamp":"2018-01-31T12:02:39.517+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"ExbM_8j1NEdq_MdkQv3klEm2","details":{}},{"name":"VariantRouting","id":"l4g9jsLZYuwrDGlwj2JdMNJj","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"ExbM_8j1NEdq_MdkQv3klEm2","details":{}}},"contextId":"VwNLocoXM0GIMKSg4uscb-gW"}}
+frontend_1 | 2018-01-31T12:02:39.518507360Z {"@timestamp":"2018-01-31T12:02:39.518+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"ExbM_8j1NEdq_MdkQv3klEm2","details":{}},{"name":"VariantRouting","id":"l4g9jsLZYuwrDGlwj2JdMNJj","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"ExbM_8j1NEdq_MdkQv3klEm2","details":{}}},"contextId":"VwNLocoXM0GIMKSg4uscb-gW"}}
+frontend_1 | 2018-01-31T12:02:39.518904030Z {"@timestamp":"2018-01-31T12:02:39.518+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"9xzxwaM2Fwq8_JQhfKvItdBI","details":{"request":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"l4g9jsLZYuwrDGlwj2JdMNJj","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"9xzxwaM2Fwq8_JQhfKvItdBI","details":{"request":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5","dimensions":{"width":160,"height":108}}}}},"contextId":"VwNLocoXM0GIMKSg4uscb-gW"}}
+frontend_1 | 2018-01-31T12:02:39.535056760Z {"@timestamp":"2018-01-31T12:02:39.534+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"9xzxwaM2Fwq8_JQhfKvItdBI","details":{"request":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"l4g9jsLZYuwrDGlwj2JdMNJj","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"9xzxwaM2Fwq8_JQhfKvItdBI","details":{"request":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5","dimensions":{"width":160,"height":108}}}}},"contextId":"VwNLocoXM0GIMKSg4uscb-gW"}}
+frontend_1 | 2018-01-31T12:02:39.705706876Z {"@timestamp":"2018-01-31T12:02:39.702+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logSuccess$1.apply(LoggerHelper.scala:86)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"9xzxwaM2Fwq8_JQhfKvItdBI","details":{"request":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"l4g9jsLZYuwrDGlwj2JdMNJj","details":{"partnerId":"test-partner-id","masterId":"BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"message":"CropMessage(PartnerId(test-partner-id),MasterId(BCD5B118F6BD841AD49BEF38EC3122E68C7615A6D4ACDB869F20A117080B87E5),Dimensions(160,108),None)","response":"VariantWorkerSuccess(Source(SourceShape(single.out(771179664))),image/jpeg)"},"contextId":"VwNLocoXM0GIMKSg4uscb-gW"}}
+frontend_1 | 2018-01-31T12:02:40.494655989Z {"@timestamp":"2018-01-31T12:02:40.494+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"rw2uD2JxP_8BXRfeulxB4WyZ","details":{"endpoint":"GET /health","transactionId":"lJ_Ipqey2JOucoWuJ-JrYsXc"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"rw2uD2JxP_8BXRfeulxB4WyZ","details":{"endpoint":"GET /health","transactionId":"lJ_Ipqey2JOucoWuJ-JrYsXc"}}},"contextId":"1bR_GVYA2bLqrKYm86Rm2dxq"}}
+frontend_1 | 2018-01-31T12:02:40.496752071Z {"@timestamp":"2018-01-31T12:02:40.496+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"rw2uD2JxP_8BXRfeulxB4WyZ","details":{"endpoint":"GET /health","transactionId":"lJ_Ipqey2JOucoWuJ-JrYsXc"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"rw2uD2JxP_8BXRfeulxB4WyZ","details":{"endpoint":"GET /health","transactionId":"lJ_Ipqey2JOucoWuJ-JrYsXc"}}},"contextId":"1bR_GVYA2bLqrKYm86Rm2dxq"}}
+frontend_1 | 2018-01-31T12:02:40.502903461Z {"@timestamp":"2018-01-31T12:02:40.502+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"kkAMdXcbbbK2E13pvsWRwj4x","details":{"endpoint":"GET /v1/variant/test-partner-id/A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9/crop?width=75&height=75","transactionId":"H0X4558Drinomd3f-Hw9CAC2"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"kkAMdXcbbbK2E13pvsWRwj4x","details":{"endpoint":"GET /v1/variant/test-partner-id/A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9/crop?width=75&height=75","transactionId":"H0X4558Drinomd3f-Hw9CAC2"}}},"contextId":"O9QWQyrh56lCSJbcEYV8jQje"}}
+frontend_1 | 2018-01-31T12:02:40.503574402Z {"@timestamp":"2018-01-31T12:02:40.503+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"iLi5X3yw_HBEDSdP7zar9mxm","details":{"partnerId":"test-partner-id","masterId":"A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"iLi5X3yw_HBEDSdP7zar9mxm","details":{"partnerId":"test-partner-id","masterId":"A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9"}}},"contextId":"O9QWQyrh56lCSJbcEYV8jQje"}}
+frontend_1 | 2018-01-31T12:02:40.503995924Z {"@timestamp":"2018-01-31T12:02:40.503+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"iLi5X3yw_HBEDSdP7zar9mxm","details":{"partnerId":"test-partner-id","masterId":"A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"iLi5X3yw_HBEDSdP7zar9mxm","details":{"partnerId":"test-partner-id","masterId":"A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9"}}},"contextId":"O9QWQyrh56lCSJbcEYV8jQje"}}
+frontend_1 | 2018-01-31T12:02:40.504394714Z {"@timestamp":"2018-01-31T12:02:40.503+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"kkAMdXcbbbK2E13pvsWRwj4x","details":{"endpoint":"GET /v1/variant/test-partner-id/A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9/crop?width=75&height=75","transactionId":"H0X4558Drinomd3f-Hw9CAC2"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"kkAMdXcbbbK2E13pvsWRwj4x","details":{"endpoint":"GET /v1/variant/test-partner-id/A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9/crop?width=75&height=75","transactionId":"H0X4558Drinomd3f-Hw9CAC2"}}},"contextId":"O9QWQyrh56lCSJbcEYV8jQje"}}
+frontend_1 | 2018-01-31T12:02:40.505162582Z {"@timestamp":"2018-01-31T12:02:40.504+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"izxLhviahOxN-K9U5Vt0gJ8P","details":{}},{"name":"VariantRouting","id":"iLi5X3yw_HBEDSdP7zar9mxm","details":{"partnerId":"test-partner-id","masterId":"A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"izxLhviahOxN-K9U5Vt0gJ8P","details":{}}},"contextId":"O9QWQyrh56lCSJbcEYV8jQje"}}
+frontend_1 | 2018-01-31T12:02:40.505548315Z {"@timestamp":"2018-01-31T12:02:40.505+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"izxLhviahOxN-K9U5Vt0gJ8P","details":{}},{"name":"VariantRouting","id":"iLi5X3yw_HBEDSdP7zar9mxm","details":{"partnerId":"test-partner-id","masterId":"A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"izxLhviahOxN-K9U5Vt0gJ8P","details":{}}},"contextId":"O9QWQyrh56lCSJbcEYV8jQje"}}
+frontend_1 | 2018-01-31T12:02:40.506158939Z {"@timestamp":"2018-01-31T12:02:40.505+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"6tJlAab30V4KMKlTs5f2VTRw","details":{}},{"name":"VariantRouting","id":"iLi5X3yw_HBEDSdP7zar9mxm","details":{"partnerId":"test-partner-id","masterId":"A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"6tJlAab30V4KMKlTs5f2VTRw","details":{}}},"contextId":"O9QWQyrh56lCSJbcEYV8jQje"}}
+frontend_1 | 2018-01-31T12:02:40.506446569Z {"@timestamp":"2018-01-31T12:02:40.506+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"6tJlAab30V4KMKlTs5f2VTRw","details":{}},{"name":"VariantRouting","id":"iLi5X3yw_HBEDSdP7zar9mxm","details":{"partnerId":"test-partner-id","masterId":"A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"6tJlAab30V4KMKlTs5f2VTRw","details":{}}},"contextId":"O9QWQyrh56lCSJbcEYV8jQje"}}
+frontend_1 | 2018-01-31T12:02:40.506877163Z {"@timestamp":"2018-01-31T12:02:40.506+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"-L-JEJc5nFddtbfWRa2qitKQ","details":{"request":{"partnerId":"test-partner-id","masterId":"A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9","dimensions":{"width":75,"height":75}}}},{"name":"VariantRouting","id":"iLi5X3yw_HBEDSdP7zar9mxm","details":{"partnerId":"test-partner-id","masterId":"A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"-L-JEJc5nFddtbfWRa2qitKQ","details":{"request":{"partnerId":"test-partner-id","masterId":"A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9","dimensions":{"width":75,"height":75}}}}},"contextId":"O9QWQyrh56lCSJbcEYV8jQje"}}
+frontend_1 | 2018-01-31T12:02:40.508241954Z {"@timestamp":"2018-01-31T12:02:40.507+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"-L-JEJc5nFddtbfWRa2qitKQ","details":{"request":{"partnerId":"test-partner-id","masterId":"A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9","dimensions":{"width":75,"height":75}}}},{"name":"VariantRouting","id":"iLi5X3yw_HBEDSdP7zar9mxm","details":{"partnerId":"test-partner-id","masterId":"A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"-L-JEJc5nFddtbfWRa2qitKQ","details":{"request":{"partnerId":"test-partner-id","masterId":"A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9","dimensions":{"width":75,"height":75}}}}},"contextId":"O9QWQyrh56lCSJbcEYV8jQje"}}
+frontend_1 | 2018-01-31T12:02:40.698028449Z {"@timestamp":"2018-01-31T12:02:40.697+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logSuccess$1.apply(LoggerHelper.scala:86)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"-L-JEJc5nFddtbfWRa2qitKQ","details":{"request":{"partnerId":"test-partner-id","masterId":"A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9","dimensions":{"width":75,"height":75}}}},{"name":"VariantRouting","id":"iLi5X3yw_HBEDSdP7zar9mxm","details":{"partnerId":"test-partner-id","masterId":"A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"message":"CropMessage(PartnerId(test-partner-id),MasterId(A8B1B5EFE7F17BA9E07F2C8E3649D990D744EE7DFF56059D5DDF49E393F560C9),Dimensions(75,75),None)","response":"VariantWorkerSuccess(Source(SourceShape(single.out(431789630))),image/jpeg)"},"contextId":"O9QWQyrh56lCSJbcEYV8jQje"}}
+frontend_1 | 2018-01-31T12:02:41.495088733Z {"@timestamp":"2018-01-31T12:02:41.494+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"F_mW1sli8lby_PBSMbiSc_ea","details":{"endpoint":"GET /health","transactionId":"ahL7KmD3EHNQ6yukLuMKRQH_"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"F_mW1sli8lby_PBSMbiSc_ea","details":{"endpoint":"GET /health","transactionId":"ahL7KmD3EHNQ6yukLuMKRQH_"}}},"contextId":"f4pqfTdldjZIlfmudzDFVXcJ"}}
+frontend_1 | 2018-01-31T12:02:41.495522524Z {"@timestamp":"2018-01-31T12:02:41.495+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"F_mW1sli8lby_PBSMbiSc_ea","details":{"endpoint":"GET /health","transactionId":"ahL7KmD3EHNQ6yukLuMKRQH_"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"F_mW1sli8lby_PBSMbiSc_ea","details":{"endpoint":"GET /health","transactionId":"ahL7KmD3EHNQ6yukLuMKRQH_"}}},"contextId":"f4pqfTdldjZIlfmudzDFVXcJ"}}
+frontend_1 | 2018-01-31T12:02:41.497625088Z {"@timestamp":"2018-01-31T12:02:41.497+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"fjWPa0XjaUrBhBdtzDzKPaZw","details":{"endpoint":"GET /v1/variant/test-partner-id/40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847/crop?width=320&height=240","transactionId":"YQ-kQIllYbn4KfdSLjom4uHU"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"fjWPa0XjaUrBhBdtzDzKPaZw","details":{"endpoint":"GET /v1/variant/test-partner-id/40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847/crop?width=320&height=240","transactionId":"YQ-kQIllYbn4KfdSLjom4uHU"}}},"contextId":"WWwhn_ir3onn7evTq4g_yru9"}}
+frontend_1 | 2018-01-31T12:02:41.502512374Z {"@timestamp":"2018-01-31T12:02:41.497+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"5gj13EISZvMnn3ujAz6uxH6w","details":{"partnerId":"test-partner-id","masterId":"40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"5gj13EISZvMnn3ujAz6uxH6w","details":{"partnerId":"test-partner-id","masterId":"40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847"}}},"contextId":"WWwhn_ir3onn7evTq4g_yru9"}}
+frontend_1 | 2018-01-31T12:02:41.503237498Z {"@timestamp":"2018-01-31T12:02:41.502+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"5gj13EISZvMnn3ujAz6uxH6w","details":{"partnerId":"test-partner-id","masterId":"40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"5gj13EISZvMnn3ujAz6uxH6w","details":{"partnerId":"test-partner-id","masterId":"40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847"}}},"contextId":"WWwhn_ir3onn7evTq4g_yru9"}}
+frontend_1 | 2018-01-31T12:02:41.504981406Z {"@timestamp":"2018-01-31T12:02:41.503+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"fjWPa0XjaUrBhBdtzDzKPaZw","details":{"endpoint":"GET /v1/variant/test-partner-id/40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847/crop?width=320&height=240","transactionId":"YQ-kQIllYbn4KfdSLjom4uHU"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"fjWPa0XjaUrBhBdtzDzKPaZw","details":{"endpoint":"GET /v1/variant/test-partner-id/40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847/crop?width=320&height=240","transactionId":"YQ-kQIllYbn4KfdSLjom4uHU"}}},"contextId":"WWwhn_ir3onn7evTq4g_yru9"}}
+frontend_1 | 2018-01-31T12:02:41.505975384Z {"@timestamp":"2018-01-31T12:02:41.505+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"3D_m1uYRpsFznbXzu0NGN-P3","details":{}},{"name":"VariantRouting","id":"5gj13EISZvMnn3ujAz6uxH6w","details":{"partnerId":"test-partner-id","masterId":"40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"3D_m1uYRpsFznbXzu0NGN-P3","details":{}}},"contextId":"WWwhn_ir3onn7evTq4g_yru9"}}
+frontend_1 | 2018-01-31T12:02:41.514397962Z {"@timestamp":"2018-01-31T12:02:41.513+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"3D_m1uYRpsFznbXzu0NGN-P3","details":{}},{"name":"VariantRouting","id":"5gj13EISZvMnn3ujAz6uxH6w","details":{"partnerId":"test-partner-id","masterId":"40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"3D_m1uYRpsFznbXzu0NGN-P3","details":{}}},"contextId":"WWwhn_ir3onn7evTq4g_yru9"}}
+frontend_1 | 2018-01-31T12:02:41.514739578Z {"@timestamp":"2018-01-31T12:02:41.514+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"bpe4orwSDWjeP_oZdbJS7u9p","details":{}},{"name":"VariantRouting","id":"5gj13EISZvMnn3ujAz6uxH6w","details":{"partnerId":"test-partner-id","masterId":"40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"bpe4orwSDWjeP_oZdbJS7u9p","details":{}}},"contextId":"WWwhn_ir3onn7evTq4g_yru9"}}
+frontend_1 | 2018-01-31T12:02:41.515114715Z {"@timestamp":"2018-01-31T12:02:41.514+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"bpe4orwSDWjeP_oZdbJS7u9p","details":{}},{"name":"VariantRouting","id":"5gj13EISZvMnn3ujAz6uxH6w","details":{"partnerId":"test-partner-id","masterId":"40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"bpe4orwSDWjeP_oZdbJS7u9p","details":{}}},"contextId":"WWwhn_ir3onn7evTq4g_yru9"}}
+frontend_1 | 2018-01-31T12:02:41.515565689Z {"@timestamp":"2018-01-31T12:02:41.515+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"vAy16eBPR5NVBZ4ecX8iZQ6K","details":{"request":{"partnerId":"test-partner-id","masterId":"40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847","dimensions":{"width":320,"height":240}}}},{"name":"VariantRouting","id":"5gj13EISZvMnn3ujAz6uxH6w","details":{"partnerId":"test-partner-id","masterId":"40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"vAy16eBPR5NVBZ4ecX8iZQ6K","details":{"request":{"partnerId":"test-partner-id","masterId":"40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847","dimensions":{"width":320,"height":240}}}}},"contextId":"WWwhn_ir3onn7evTq4g_yru9"}}
+frontend_1 | 2018-01-31T12:02:41.521906992Z {"@timestamp":"2018-01-31T12:02:41.516+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"vAy16eBPR5NVBZ4ecX8iZQ6K","details":{"request":{"partnerId":"test-partner-id","masterId":"40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847","dimensions":{"width":320,"height":240}}}},{"name":"VariantRouting","id":"5gj13EISZvMnn3ujAz6uxH6w","details":{"partnerId":"test-partner-id","masterId":"40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"vAy16eBPR5NVBZ4ecX8iZQ6K","details":{"request":{"partnerId":"test-partner-id","masterId":"40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847","dimensions":{"width":320,"height":240}}}}},"contextId":"WWwhn_ir3onn7evTq4g_yru9"}}
+frontend_1 | 2018-01-31T12:02:41.701454407Z {"@timestamp":"2018-01-31T12:02:41.701+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logSuccess$1.apply(LoggerHelper.scala:86)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"vAy16eBPR5NVBZ4ecX8iZQ6K","details":{"request":{"partnerId":"test-partner-id","masterId":"40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847","dimensions":{"width":320,"height":240}}}},{"name":"VariantRouting","id":"5gj13EISZvMnn3ujAz6uxH6w","details":{"partnerId":"test-partner-id","masterId":"40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"message":"CropMessage(PartnerId(test-partner-id),MasterId(40BF3CFB7E73BBC49658DE7A322D8FCD166AEABE6EF5B07D8A1FA15C57A59847),Dimensions(320,240),None)","response":"VariantWorkerSuccess(Source(SourceShape(single.out(1564409449))),image/jpeg)"},"contextId":"WWwhn_ir3onn7evTq4g_yru9"}}
+frontend_1 | 2018-01-31T12:02:43.496416481Z {"@timestamp":"2018-01-31T12:02:43.495+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"HWUEAkz6GqDXAgkiz126T3G2","details":{"endpoint":"GET /health","transactionId":"hBlEdW21XvfPIwTD7XlEG-Cz"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"HWUEAkz6GqDXAgkiz126T3G2","details":{"endpoint":"GET /health","transactionId":"hBlEdW21XvfPIwTD7XlEG-Cz"}}},"contextId":"VvA8idJRmitNO9BbxHJl5TYw"}}
+frontend_1 | 2018-01-31T12:02:43.496865853Z {"@timestamp":"2018-01-31T12:02:43.496+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"HWUEAkz6GqDXAgkiz126T3G2","details":{"endpoint":"GET /health","transactionId":"hBlEdW21XvfPIwTD7XlEG-Cz"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"HWUEAkz6GqDXAgkiz126T3G2","details":{"endpoint":"GET /health","transactionId":"hBlEdW21XvfPIwTD7XlEG-Cz"}}},"contextId":"VvA8idJRmitNO9BbxHJl5TYw"}}
+frontend_1 | 2018-01-31T12:02:43.498521931Z {"@timestamp":"2018-01-31T12:02:43.498+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"FwIw7DTk1CeX2sj6bfB7PzaY","details":{"endpoint":"GET /v1/variant/test-partner-id/347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986/crop?width=120&height=80","transactionId":"948p1LhidUCm-MYnaDYQjkS4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"FwIw7DTk1CeX2sj6bfB7PzaY","details":{"endpoint":"GET /v1/variant/test-partner-id/347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986/crop?width=120&height=80","transactionId":"948p1LhidUCm-MYnaDYQjkS4"}}},"contextId":"MKPQIEHJA51LoEgdR-YWVfWJ"}}
+frontend_1 | 2018-01-31T12:02:43.499229505Z {"@timestamp":"2018-01-31T12:02:43.498+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"pbiF9Xq_Sbw8nKArE2AnBo1K","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"pbiF9Xq_Sbw8nKArE2AnBo1K","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}},"contextId":"MKPQIEHJA51LoEgdR-YWVfWJ"}}
+frontend_1 | 2018-01-31T12:02:43.501250457Z {"@timestamp":"2018-01-31T12:02:43.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"pbiF9Xq_Sbw8nKArE2AnBo1K","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"pbiF9Xq_Sbw8nKArE2AnBo1K","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}},"contextId":"MKPQIEHJA51LoEgdR-YWVfWJ"}}
+frontend_1 | 2018-01-31T12:02:43.501656528Z {"@timestamp":"2018-01-31T12:02:43.501+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"FwIw7DTk1CeX2sj6bfB7PzaY","details":{"endpoint":"GET /v1/variant/test-partner-id/347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986/crop?width=120&height=80","transactionId":"948p1LhidUCm-MYnaDYQjkS4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"FwIw7DTk1CeX2sj6bfB7PzaY","details":{"endpoint":"GET /v1/variant/test-partner-id/347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986/crop?width=120&height=80","transactionId":"948p1LhidUCm-MYnaDYQjkS4"}}},"contextId":"MKPQIEHJA51LoEgdR-YWVfWJ"}}
+frontend_1 | 2018-01-31T12:02:43.502392860Z {"@timestamp":"2018-01-31T12:02:43.501+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"oJu2sn7yFy0RsQig-D-H5CSB","details":{}},{"name":"VariantRouting","id":"pbiF9Xq_Sbw8nKArE2AnBo1K","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"oJu2sn7yFy0RsQig-D-H5CSB","details":{}}},"contextId":"MKPQIEHJA51LoEgdR-YWVfWJ"}}
+frontend_1 | 2018-01-31T12:02:43.503180282Z {"@timestamp":"2018-01-31T12:02:43.502+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"oJu2sn7yFy0RsQig-D-H5CSB","details":{}},{"name":"VariantRouting","id":"pbiF9Xq_Sbw8nKArE2AnBo1K","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"oJu2sn7yFy0RsQig-D-H5CSB","details":{}}},"contextId":"MKPQIEHJA51LoEgdR-YWVfWJ"}}
+frontend_1 | 2018-01-31T12:02:43.503570421Z {"@timestamp":"2018-01-31T12:02:43.503+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"PI-MXMaDXhUiLGCBc89AUki5","details":{}},{"name":"VariantRouting","id":"pbiF9Xq_Sbw8nKArE2AnBo1K","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"PI-MXMaDXhUiLGCBc89AUki5","details":{}}},"contextId":"MKPQIEHJA51LoEgdR-YWVfWJ"}}
+frontend_1 | 2018-01-31T12:02:43.507440625Z {"@timestamp":"2018-01-31T12:02:43.506+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"PI-MXMaDXhUiLGCBc89AUki5","details":{}},{"name":"VariantRouting","id":"pbiF9Xq_Sbw8nKArE2AnBo1K","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"PI-MXMaDXhUiLGCBc89AUki5","details":{}}},"contextId":"MKPQIEHJA51LoEgdR-YWVfWJ"}}
+frontend_1 | 2018-01-31T12:02:43.508471305Z {"@timestamp":"2018-01-31T12:02:43.508+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"hhV23TpUF3FShMJI8wrM2Wa9","details":{"request":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986","dimensions":{"width":120,"height":80}}}},{"name":"VariantRouting","id":"pbiF9Xq_Sbw8nKArE2AnBo1K","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"hhV23TpUF3FShMJI8wrM2Wa9","details":{"request":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986","dimensions":{"width":120,"height":80}}}}},"contextId":"MKPQIEHJA51LoEgdR-YWVfWJ"}}
+frontend_1 | 2018-01-31T12:02:43.510783981Z {"@timestamp":"2018-01-31T12:02:43.510+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"hhV23TpUF3FShMJI8wrM2Wa9","details":{"request":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986","dimensions":{"width":120,"height":80}}}},{"name":"VariantRouting","id":"pbiF9Xq_Sbw8nKArE2AnBo1K","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"hhV23TpUF3FShMJI8wrM2Wa9","details":{"request":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986","dimensions":{"width":120,"height":80}}}}},"contextId":"MKPQIEHJA51LoEgdR-YWVfWJ"}}
+frontend_1 | 2018-01-31T12:02:43.694538761Z {"@timestamp":"2018-01-31T12:02:43.692+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logSuccess$1.apply(LoggerHelper.scala:86)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"hhV23TpUF3FShMJI8wrM2Wa9","details":{"request":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986","dimensions":{"width":120,"height":80}}}},{"name":"VariantRouting","id":"pbiF9Xq_Sbw8nKArE2AnBo1K","details":{"partnerId":"test-partner-id","masterId":"347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"message":"CropMessage(PartnerId(test-partner-id),MasterId(347D15F25EF401723B6C278A38C2B8B0862E424E4BDCCDCF15CBC95BB12A8986),Dimensions(120,80),None)","response":"VariantWorkerSuccess(Source(SourceShape(single.out(269009993))),image/jpeg)"},"contextId":"MKPQIEHJA51LoEgdR-YWVfWJ"}}
+frontend_1 | 2018-01-31T12:02:44.496587944Z {"@timestamp":"2018-01-31T12:02:44.496+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"gjD5jrQbYAP0aNlLVsCeOKqO","details":{"endpoint":"GET /health","transactionId":"JNRGgll4HHwC9ILUkWF-9tZo"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"gjD5jrQbYAP0aNlLVsCeOKqO","details":{"endpoint":"GET /health","transactionId":"JNRGgll4HHwC9ILUkWF-9tZo"}}},"contextId":"Kur9_XJ5gAoLbLBBSShxLc2F"}}
+frontend_1 | 2018-01-31T12:02:44.498304617Z {"@timestamp":"2018-01-31T12:02:44.497+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"gjD5jrQbYAP0aNlLVsCeOKqO","details":{"endpoint":"GET /health","transactionId":"JNRGgll4HHwC9ILUkWF-9tZo"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"gjD5jrQbYAP0aNlLVsCeOKqO","details":{"endpoint":"GET /health","transactionId":"JNRGgll4HHwC9ILUkWF-9tZo"}}},"contextId":"Kur9_XJ5gAoLbLBBSShxLc2F"}}
+frontend_1 | 2018-01-31T12:02:44.499479529Z {"@timestamp":"2018-01-31T12:02:44.498+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"X45PlEMW8kBywZyz4E0X9C7Z","details":{"endpoint":"GET /v1/variant/test-partner-id/2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117/crop?width=1024&height=768","transactionId":"OQcw9sUbaE5I9S61vEznr7FU"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"X45PlEMW8kBywZyz4E0X9C7Z","details":{"endpoint":"GET /v1/variant/test-partner-id/2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117/crop?width=1024&height=768","transactionId":"OQcw9sUbaE5I9S61vEznr7FU"}}},"contextId":"-D-Y8d8ZziXIpMsGf_phqhRQ"}}
+frontend_1 | 2018-01-31T12:02:44.500183946Z {"@timestamp":"2018-01-31T12:02:44.499+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"URy1x4nBIRQB-aMtt187YdD3","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"URy1x4nBIRQB-aMtt187YdD3","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}},"contextId":"-D-Y8d8ZziXIpMsGf_phqhRQ"}}
+frontend_1 | 2018-01-31T12:02:44.500877694Z {"@timestamp":"2018-01-31T12:02:44.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"URy1x4nBIRQB-aMtt187YdD3","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"URy1x4nBIRQB-aMtt187YdD3","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}},"contextId":"-D-Y8d8ZziXIpMsGf_phqhRQ"}}
+frontend_1 | 2018-01-31T12:02:44.501370872Z {"@timestamp":"2018-01-31T12:02:44.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"X45PlEMW8kBywZyz4E0X9C7Z","details":{"endpoint":"GET /v1/variant/test-partner-id/2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117/crop?width=1024&height=768","transactionId":"OQcw9sUbaE5I9S61vEznr7FU"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"X45PlEMW8kBywZyz4E0X9C7Z","details":{"endpoint":"GET /v1/variant/test-partner-id/2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117/crop?width=1024&height=768","transactionId":"OQcw9sUbaE5I9S61vEznr7FU"}}},"contextId":"-D-Y8d8ZziXIpMsGf_phqhRQ"}}
+frontend_1 | 2018-01-31T12:02:44.503586210Z {"@timestamp":"2018-01-31T12:02:44.502+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"M9dwHKb_tk89FKKRAk35wtL5","details":{}},{"name":"VariantRouting","id":"URy1x4nBIRQB-aMtt187YdD3","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"M9dwHKb_tk89FKKRAk35wtL5","details":{}}},"contextId":"-D-Y8d8ZziXIpMsGf_phqhRQ"}}
+frontend_1 | 2018-01-31T12:02:44.504111305Z {"@timestamp":"2018-01-31T12:02:44.503+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"M9dwHKb_tk89FKKRAk35wtL5","details":{}},{"name":"VariantRouting","id":"URy1x4nBIRQB-aMtt187YdD3","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"M9dwHKb_tk89FKKRAk35wtL5","details":{}}},"contextId":"-D-Y8d8ZziXIpMsGf_phqhRQ"}}
+frontend_1 | 2018-01-31T12:02:44.504399872Z {"@timestamp":"2018-01-31T12:02:44.503+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"SwoW2P6RRTniykZg_1wRFx39","details":{}},{"name":"VariantRouting","id":"URy1x4nBIRQB-aMtt187YdD3","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"SwoW2P6RRTniykZg_1wRFx39","details":{}}},"contextId":"-D-Y8d8ZziXIpMsGf_phqhRQ"}}
+frontend_1 | 2018-01-31T12:02:44.504945581Z {"@timestamp":"2018-01-31T12:02:44.504+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"SwoW2P6RRTniykZg_1wRFx39","details":{}},{"name":"VariantRouting","id":"URy1x4nBIRQB-aMtt187YdD3","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"SwoW2P6RRTniykZg_1wRFx39","details":{}}},"contextId":"-D-Y8d8ZziXIpMsGf_phqhRQ"}}
+frontend_1 | 2018-01-31T12:02:44.505636351Z {"@timestamp":"2018-01-31T12:02:44.505+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"pMn-tc49s8sw9Gm4UK5P7ntO","details":{"request":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"URy1x4nBIRQB-aMtt187YdD3","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"pMn-tc49s8sw9Gm4UK5P7ntO","details":{"request":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117","dimensions":{"width":1024,"height":768}}}}},"contextId":"-D-Y8d8ZziXIpMsGf_phqhRQ"}}
+frontend_1 | 2018-01-31T12:02:44.508580814Z {"@timestamp":"2018-01-31T12:02:44.508+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"pMn-tc49s8sw9Gm4UK5P7ntO","details":{"request":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"URy1x4nBIRQB-aMtt187YdD3","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"pMn-tc49s8sw9Gm4UK5P7ntO","details":{"request":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117","dimensions":{"width":1024,"height":768}}}}},"contextId":"-D-Y8d8ZziXIpMsGf_phqhRQ"}}
+frontend_1 | 2018-01-31T12:02:44.816459841Z {"@timestamp":"2018-01-31T12:02:44.815+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"pMn-tc49s8sw9Gm4UK5P7ntO","details":{"request":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"URy1x4nBIRQB-aMtt187YdD3","details":{"partnerId":"test-partner-id","masterId":"2540B01D2FC4AF901076BD3BC5020A6CE77984B61986614034B964A057DDE117"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"-D-Y8d8ZziXIpMsGf_phqhRQ"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:45.496605058Z {"@timestamp":"2018-01-31T12:02:45.495+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"NPiax-ER7q2xk52dp-ru3PFy","details":{"endpoint":"GET /health","transactionId":"Jhh2qBm74SoojFaeRen49QaN"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"NPiax-ER7q2xk52dp-ru3PFy","details":{"endpoint":"GET /health","transactionId":"Jhh2qBm74SoojFaeRen49QaN"}}},"contextId":"OEKLKpRCtsVakadjSZjytPOX"}}
+frontend_1 | 2018-01-31T12:02:45.497252300Z {"@timestamp":"2018-01-31T12:02:45.496+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"NPiax-ER7q2xk52dp-ru3PFy","details":{"endpoint":"GET /health","transactionId":"Jhh2qBm74SoojFaeRen49QaN"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"NPiax-ER7q2xk52dp-ru3PFy","details":{"endpoint":"GET /health","transactionId":"Jhh2qBm74SoojFaeRen49QaN"}}},"contextId":"OEKLKpRCtsVakadjSZjytPOX"}}
+frontend_1 | 2018-01-31T12:02:45.499606889Z {"@timestamp":"2018-01-31T12:02:45.499+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"fOcDZND1fBcEtxcAFB1Hn7TI","details":{"endpoint":"GET /v1/variant/test-partner-id/BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3/crop?width=160&height=108","transactionId":"Y4L4Kg3Yosho56MVFFyEgflV"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"fOcDZND1fBcEtxcAFB1Hn7TI","details":{"endpoint":"GET /v1/variant/test-partner-id/BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3/crop?width=160&height=108","transactionId":"Y4L4Kg3Yosho56MVFFyEgflV"}}},"contextId":"NN_UG85F1lsy0tdYg7ED6er5"}}
+frontend_1 | 2018-01-31T12:02:45.501433725Z {"@timestamp":"2018-01-31T12:02:45.499+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"Bg20xhuqUqOsYEOF916DDZJB","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"Bg20xhuqUqOsYEOF916DDZJB","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}},"contextId":"NN_UG85F1lsy0tdYg7ED6er5"}}
+frontend_1 | 2018-01-31T12:02:45.502556686Z {"@timestamp":"2018-01-31T12:02:45.501+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"Bg20xhuqUqOsYEOF916DDZJB","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"Bg20xhuqUqOsYEOF916DDZJB","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}},"contextId":"NN_UG85F1lsy0tdYg7ED6er5"}}
+frontend_1 | 2018-01-31T12:02:45.502840826Z {"@timestamp":"2018-01-31T12:02:45.502+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"fOcDZND1fBcEtxcAFB1Hn7TI","details":{"endpoint":"GET /v1/variant/test-partner-id/BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3/crop?width=160&height=108","transactionId":"Y4L4Kg3Yosho56MVFFyEgflV"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"fOcDZND1fBcEtxcAFB1Hn7TI","details":{"endpoint":"GET /v1/variant/test-partner-id/BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3/crop?width=160&height=108","transactionId":"Y4L4Kg3Yosho56MVFFyEgflV"}}},"contextId":"NN_UG85F1lsy0tdYg7ED6er5"}}
+frontend_1 | 2018-01-31T12:02:45.503654146Z {"@timestamp":"2018-01-31T12:02:45.503+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"7o_aS1Or_PJjqt9erO84GGBS","details":{}},{"name":"VariantRouting","id":"Bg20xhuqUqOsYEOF916DDZJB","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"7o_aS1Or_PJjqt9erO84GGBS","details":{}}},"contextId":"NN_UG85F1lsy0tdYg7ED6er5"}}
+frontend_1 | 2018-01-31T12:02:45.504090483Z {"@timestamp":"2018-01-31T12:02:45.503+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"7o_aS1Or_PJjqt9erO84GGBS","details":{}},{"name":"VariantRouting","id":"Bg20xhuqUqOsYEOF916DDZJB","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"7o_aS1Or_PJjqt9erO84GGBS","details":{}}},"contextId":"NN_UG85F1lsy0tdYg7ED6er5"}}
+frontend_1 | 2018-01-31T12:02:45.504465601Z {"@timestamp":"2018-01-31T12:02:45.504+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"iHcD1rvLMi0yIMR0PtEP_6WG","details":{}},{"name":"VariantRouting","id":"Bg20xhuqUqOsYEOF916DDZJB","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"iHcD1rvLMi0yIMR0PtEP_6WG","details":{}}},"contextId":"NN_UG85F1lsy0tdYg7ED6er5"}}
+frontend_1 | 2018-01-31T12:02:45.504740814Z {"@timestamp":"2018-01-31T12:02:45.504+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"iHcD1rvLMi0yIMR0PtEP_6WG","details":{}},{"name":"VariantRouting","id":"Bg20xhuqUqOsYEOF916DDZJB","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"iHcD1rvLMi0yIMR0PtEP_6WG","details":{}}},"contextId":"NN_UG85F1lsy0tdYg7ED6er5"}}
+frontend_1 | 2018-01-31T12:02:45.505245344Z {"@timestamp":"2018-01-31T12:02:45.504+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"YdBIy7gQFrGB9c0ieROQV7wE","details":{"request":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"Bg20xhuqUqOsYEOF916DDZJB","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"YdBIy7gQFrGB9c0ieROQV7wE","details":{"request":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3","dimensions":{"width":160,"height":108}}}}},"contextId":"NN_UG85F1lsy0tdYg7ED6er5"}}
+frontend_1 | 2018-01-31T12:02:45.512297223Z {"@timestamp":"2018-01-31T12:02:45.506+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"YdBIy7gQFrGB9c0ieROQV7wE","details":{"request":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"Bg20xhuqUqOsYEOF916DDZJB","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"YdBIy7gQFrGB9c0ieROQV7wE","details":{"request":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3","dimensions":{"width":160,"height":108}}}}},"contextId":"NN_UG85F1lsy0tdYg7ED6er5"}}
+frontend_1 | 2018-01-31T12:02:45.662672130Z {"@timestamp":"2018-01-31T12:02:45.662+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logSuccess$1.apply(LoggerHelper.scala:86)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"YdBIy7gQFrGB9c0ieROQV7wE","details":{"request":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3","dimensions":{"width":160,"height":108}}}},{"name":"VariantRouting","id":"Bg20xhuqUqOsYEOF916DDZJB","details":{"partnerId":"test-partner-id","masterId":"BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"message":"CropMessage(PartnerId(test-partner-id),MasterId(BB6A1EF65F2140624CEF67DC0DDFF457F763DD33F9DA623592F60561FF739DD3),Dimensions(160,108),None)","response":"VariantWorkerSuccess(Source(SourceShape(single.out(1758365707))),image/jpeg)"},"contextId":"NN_UG85F1lsy0tdYg7ED6er5"}}
+frontend_1 | 2018-01-31T12:02:47.503148630Z {"@timestamp":"2018-01-31T12:02:47.502+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"lR52VvZxPAcx3cuesydcYiA1","details":{"endpoint":"GET /health","transactionId":"C0KlUZYRbPV1YqnkZjpxhtUu"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"lR52VvZxPAcx3cuesydcYiA1","details":{"endpoint":"GET /health","transactionId":"C0KlUZYRbPV1YqnkZjpxhtUu"}}},"contextId":"PoNFCTWVB_2Fn7D2hKYEfvL8"}}
+frontend_1 | 2018-01-31T12:02:47.506295860Z {"@timestamp":"2018-01-31T12:02:47.505+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"lR52VvZxPAcx3cuesydcYiA1","details":{"endpoint":"GET /health","transactionId":"C0KlUZYRbPV1YqnkZjpxhtUu"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"lR52VvZxPAcx3cuesydcYiA1","details":{"endpoint":"GET /health","transactionId":"C0KlUZYRbPV1YqnkZjpxhtUu"}}},"contextId":"PoNFCTWVB_2Fn7D2hKYEfvL8"}}
+frontend_1 | 2018-01-31T12:02:47.511024771Z {"@timestamp":"2018-01-31T12:02:47.510+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"vgcsmHU-WceiV4Jbv6BbAFd5","details":{"endpoint":"GET /v1/variant/test-partner-id/B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093/crop?width=1024&height=768","transactionId":"ZXodaQ_9JLD1gShgv6J2W18P"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"vgcsmHU-WceiV4Jbv6BbAFd5","details":{"endpoint":"GET /v1/variant/test-partner-id/B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093/crop?width=1024&height=768","transactionId":"ZXodaQ_9JLD1gShgv6J2W18P"}}},"contextId":"T8hsQ_iHVH-9-Oy_mfF7Nd9G"}}
+frontend_1 | 2018-01-31T12:02:47.511500082Z {"@timestamp":"2018-01-31T12:02:47.511+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"jpsBGJns3KGCDoVodylQANUz","details":{"partnerId":"test-partner-id","masterId":"B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"jpsBGJns3KGCDoVodylQANUz","details":{"partnerId":"test-partner-id","masterId":"B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093"}}},"contextId":"T8hsQ_iHVH-9-Oy_mfF7Nd9G"}}
+frontend_1 | 2018-01-31T12:02:47.511939032Z {"@timestamp":"2018-01-31T12:02:47.511+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"jpsBGJns3KGCDoVodylQANUz","details":{"partnerId":"test-partner-id","masterId":"B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"jpsBGJns3KGCDoVodylQANUz","details":{"partnerId":"test-partner-id","masterId":"B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093"}}},"contextId":"T8hsQ_iHVH-9-Oy_mfF7Nd9G"}}
+frontend_1 | 2018-01-31T12:02:47.512299521Z {"@timestamp":"2018-01-31T12:02:47.511+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"vgcsmHU-WceiV4Jbv6BbAFd5","details":{"endpoint":"GET /v1/variant/test-partner-id/B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093/crop?width=1024&height=768","transactionId":"ZXodaQ_9JLD1gShgv6J2W18P"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"vgcsmHU-WceiV4Jbv6BbAFd5","details":{"endpoint":"GET /v1/variant/test-partner-id/B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093/crop?width=1024&height=768","transactionId":"ZXodaQ_9JLD1gShgv6J2W18P"}}},"contextId":"T8hsQ_iHVH-9-Oy_mfF7Nd9G"}}
+frontend_1 | 2018-01-31T12:02:47.513275148Z {"@timestamp":"2018-01-31T12:02:47.512+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"Gas-QS703aSxI43YVsqdStBJ","details":{}},{"name":"VariantRouting","id":"jpsBGJns3KGCDoVodylQANUz","details":{"partnerId":"test-partner-id","masterId":"B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"Gas-QS703aSxI43YVsqdStBJ","details":{}}},"contextId":"T8hsQ_iHVH-9-Oy_mfF7Nd9G"}}
+frontend_1 | 2018-01-31T12:02:47.515299296Z {"@timestamp":"2018-01-31T12:02:47.514+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"Gas-QS703aSxI43YVsqdStBJ","details":{}},{"name":"VariantRouting","id":"jpsBGJns3KGCDoVodylQANUz","details":{"partnerId":"test-partner-id","masterId":"B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"Gas-QS703aSxI43YVsqdStBJ","details":{}}},"contextId":"T8hsQ_iHVH-9-Oy_mfF7Nd9G"}}
+frontend_1 | 2018-01-31T12:02:47.517428405Z {"@timestamp":"2018-01-31T12:02:47.515+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"QjWjCTkXb28WSXg9FZ8Oj-_6","details":{}},{"name":"VariantRouting","id":"jpsBGJns3KGCDoVodylQANUz","details":{"partnerId":"test-partner-id","masterId":"B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"QjWjCTkXb28WSXg9FZ8Oj-_6","details":{}}},"contextId":"T8hsQ_iHVH-9-Oy_mfF7Nd9G"}}
+frontend_1 | 2018-01-31T12:02:47.518397616Z {"@timestamp":"2018-01-31T12:02:47.517+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"QjWjCTkXb28WSXg9FZ8Oj-_6","details":{}},{"name":"VariantRouting","id":"jpsBGJns3KGCDoVodylQANUz","details":{"partnerId":"test-partner-id","masterId":"B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"QjWjCTkXb28WSXg9FZ8Oj-_6","details":{}}},"contextId":"T8hsQ_iHVH-9-Oy_mfF7Nd9G"}}
+frontend_1 | 2018-01-31T12:02:47.520070045Z {"@timestamp":"2018-01-31T12:02:47.519+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"RLMoOBK6xSdigQfplvPPxTY1","details":{"request":{"partnerId":"test-partner-id","masterId":"B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"jpsBGJns3KGCDoVodylQANUz","details":{"partnerId":"test-partner-id","masterId":"B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"RLMoOBK6xSdigQfplvPPxTY1","details":{"request":{"partnerId":"test-partner-id","masterId":"B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093","dimensions":{"width":1024,"height":768}}}}},"contextId":"T8hsQ_iHVH-9-Oy_mfF7Nd9G"}}
+frontend_1 | 2018-01-31T12:02:47.522631317Z {"@timestamp":"2018-01-31T12:02:47.522+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"RLMoOBK6xSdigQfplvPPxTY1","details":{"request":{"partnerId":"test-partner-id","masterId":"B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"jpsBGJns3KGCDoVodylQANUz","details":{"partnerId":"test-partner-id","masterId":"B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"RLMoOBK6xSdigQfplvPPxTY1","details":{"request":{"partnerId":"test-partner-id","masterId":"B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093","dimensions":{"width":1024,"height":768}}}}},"contextId":"T8hsQ_iHVH-9-Oy_mfF7Nd9G"}}
+frontend_1 | 2018-01-31T12:02:47.827807696Z {"@timestamp":"2018-01-31T12:02:47.827+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"ERROR","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logError$1.applyOrElse(LoggerHelper.scala:111)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"RLMoOBK6xSdigQfplvPPxTY1","details":{"request":{"partnerId":"test-partner-id","masterId":"B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093","dimensions":{"width":1024,"height":768}}}},{"name":"VariantRouting","id":"jpsBGJns3KGCDoVodylQANUz","details":{"partnerId":"test-partner-id","masterId":"B7CE67747AC4719ACA0619CAA06A13516D28B04F23BE51C9287E11933875F093"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["failure"],"details":{"message":"Task timed-out after 300 milliseconds of inactivity"},"contextId":"T8hsQ_iHVH-9-Oy_mfF7Nd9G"},"error-stacktrace":"j.u.c.TimeoutException: Task timed-out after 300 milliseconds of inactivity\n\tat monix.eval.Task.timeout(Task.scala:581)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:83)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4$$anonfun$apply$7.apply(VariantController.scala:80)\n\tat c.b.c.r.c.l.StructuredLogging.withOperation(StructuredLogging.scala:94)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:80)\n\tat c.b.c.r.c.a.c.VariantController$$anonfun$crop$1$$anonfun$4.apply(VariantController.scala:77)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:253)\n\tat s.c.Future$$anonfun$flatMap$1.apply(Future.scala:251)\n\tat s.c.i.CallbackRunnable.run(Promise.scala:36)\n\tat a.d.BatchingExecutor$AbstractBatch.processBatch(BatchingExecutor.scala:55)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply$mcV$sp(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat a.d.BatchingExecutor$BlockableBatch$$anonfun$run$1.apply(BatchingExecutor.scala:91)\n\tat s.c.BlockContext$.withBlockContext(BlockContext.scala:72)\n\tat a.d.BatchingExecutor$BlockableBatch.run(BatchingExecutor.scala:90)\n\tat a.d.TaskInvocation.run(AbstractDispatcher.scala:40)\n\tat a.d.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(ForkJoinExecutorConfigurator.scala:43)\n\tat a.d.f.ForkJoinTask.doExec(ForkJoinTask.java:260)\n\tat a.d.f.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339)\n\tat a.d.f.ForkJoinPool.runWorker(ForkJoinPool.java:1979)\n\tat a.d.f.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)\n","error-stackhash":"ef3120e1"}
+frontend_1 | 2018-01-31T12:02:48.499068736Z {"@timestamp":"2018-01-31T12:02:48.498+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"vGuyXqI6Q253ZaTI3Zn0pOV6","details":{"endpoint":"GET /health","transactionId":"6-0hz4oTZ9g5LuuFUb-6kkOh"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"vGuyXqI6Q253ZaTI3Zn0pOV6","details":{"endpoint":"GET /health","transactionId":"6-0hz4oTZ9g5LuuFUb-6kkOh"}}},"contextId":"1kn0_1Qa3VXMcMKSL1rzdn_q"}}
+frontend_1 | 2018-01-31T12:02:48.499435441Z {"@timestamp":"2018-01-31T12:02:48.498+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"vGuyXqI6Q253ZaTI3Zn0pOV6","details":{"endpoint":"GET /health","transactionId":"6-0hz4oTZ9g5LuuFUb-6kkOh"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"vGuyXqI6Q253ZaTI3Zn0pOV6","details":{"endpoint":"GET /health","transactionId":"6-0hz4oTZ9g5LuuFUb-6kkOh"}}},"contextId":"1kn0_1Qa3VXMcMKSL1rzdn_q"}}
+frontend_1 | 2018-01-31T12:02:48.500075387Z {"@timestamp":"2018-01-31T12:02:48.499+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"8H8TlnobHZ_wI22NsbH2E69s","details":{"endpoint":"GET /v1/variant/test-partner-id/036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4/crop?width=100&height=100","transactionId":"huaWG8QXBSj0vrSKcyLtqvcl"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"8H8TlnobHZ_wI22NsbH2E69s","details":{"endpoint":"GET /v1/variant/test-partner-id/036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4/crop?width=100&height=100","transactionId":"huaWG8QXBSj0vrSKcyLtqvcl"}}},"contextId":"0lJbB86tFxcFP5oP1l0ppHjC"}}
+frontend_1 | 2018-01-31T12:02:48.500633101Z {"@timestamp":"2018-01-31T12:02:48.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"tk1bXRSeMZDrvTGAjtZsz8Qp","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"tk1bXRSeMZDrvTGAjtZsz8Qp","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}},"contextId":"0lJbB86tFxcFP5oP1l0ppHjC"}}
+frontend_1 | 2018-01-31T12:02:48.501021179Z {"@timestamp":"2018-01-31T12:02:48.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"tk1bXRSeMZDrvTGAjtZsz8Qp","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"tk1bXRSeMZDrvTGAjtZsz8Qp","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}},"contextId":"0lJbB86tFxcFP5oP1l0ppHjC"}}
+frontend_1 | 2018-01-31T12:02:48.501391780Z {"@timestamp":"2018-01-31T12:02:48.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"8H8TlnobHZ_wI22NsbH2E69s","details":{"endpoint":"GET /v1/variant/test-partner-id/036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4/crop?width=100&height=100","transactionId":"huaWG8QXBSj0vrSKcyLtqvcl"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"8H8TlnobHZ_wI22NsbH2E69s","details":{"endpoint":"GET /v1/variant/test-partner-id/036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4/crop?width=100&height=100","transactionId":"huaWG8QXBSj0vrSKcyLtqvcl"}}},"contextId":"0lJbB86tFxcFP5oP1l0ppHjC"}}
+frontend_1 | 2018-01-31T12:02:48.504222840Z {"@timestamp":"2018-01-31T12:02:48.503+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"D9Mo_Rcw681mvR-ZHllEfM5Y","details":{}},{"name":"VariantRouting","id":"tk1bXRSeMZDrvTGAjtZsz8Qp","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"D9Mo_Rcw681mvR-ZHllEfM5Y","details":{}}},"contextId":"0lJbB86tFxcFP5oP1l0ppHjC"}}
+frontend_1 | 2018-01-31T12:02:48.504635246Z {"@timestamp":"2018-01-31T12:02:48.504+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"D9Mo_Rcw681mvR-ZHllEfM5Y","details":{}},{"name":"VariantRouting","id":"tk1bXRSeMZDrvTGAjtZsz8Qp","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"D9Mo_Rcw681mvR-ZHllEfM5Y","details":{}}},"contextId":"0lJbB86tFxcFP5oP1l0ppHjC"}}
+frontend_1 | 2018-01-31T12:02:48.504953430Z {"@timestamp":"2018-01-31T12:02:48.504+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"B2cPC15PLAQ2ahNPMcjlPCoK","details":{}},{"name":"VariantRouting","id":"tk1bXRSeMZDrvTGAjtZsz8Qp","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"B2cPC15PLAQ2ahNPMcjlPCoK","details":{}}},"contextId":"0lJbB86tFxcFP5oP1l0ppHjC"}}
+frontend_1 | 2018-01-31T12:02:48.505477749Z {"@timestamp":"2018-01-31T12:02:48.505+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"B2cPC15PLAQ2ahNPMcjlPCoK","details":{}},{"name":"VariantRouting","id":"tk1bXRSeMZDrvTGAjtZsz8Qp","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"B2cPC15PLAQ2ahNPMcjlPCoK","details":{}}},"contextId":"0lJbB86tFxcFP5oP1l0ppHjC"}}
+frontend_1 | 2018-01-31T12:02:48.506576505Z {"@timestamp":"2018-01-31T12:02:48.505+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"H8oK40rFo9dOovI2Qhbn1XS4","details":{"request":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4","dimensions":{"width":100,"height":100}}}},{"name":"VariantRouting","id":"tk1bXRSeMZDrvTGAjtZsz8Qp","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"H8oK40rFo9dOovI2Qhbn1XS4","details":{"request":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4","dimensions":{"width":100,"height":100}}}}},"contextId":"0lJbB86tFxcFP5oP1l0ppHjC"}}
+frontend_1 | 2018-01-31T12:02:48.508391648Z {"@timestamp":"2018-01-31T12:02:48.507+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"H8oK40rFo9dOovI2Qhbn1XS4","details":{"request":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4","dimensions":{"width":100,"height":100}}}},{"name":"VariantRouting","id":"tk1bXRSeMZDrvTGAjtZsz8Qp","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"H8oK40rFo9dOovI2Qhbn1XS4","details":{"request":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4","dimensions":{"width":100,"height":100}}}}},"contextId":"0lJbB86tFxcFP5oP1l0ppHjC"}}
+frontend_1 | 2018-01-31T12:02:48.757110607Z {"@timestamp":"2018-01-31T12:02:48.756+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logSuccess$1.apply(LoggerHelper.scala:86)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"H8oK40rFo9dOovI2Qhbn1XS4","details":{"request":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4","dimensions":{"width":100,"height":100}}}},{"name":"VariantRouting","id":"tk1bXRSeMZDrvTGAjtZsz8Qp","details":{"partnerId":"test-partner-id","masterId":"036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"message":"CropMessage(PartnerId(test-partner-id),MasterId(036AA55A0E15D676F01DBB1081AC0A737E31CC4BA8AEEC740920C8A6988123E4),Dimensions(100,100),None)","response":"VariantWorkerSuccess(Source(SourceShape(single.out(1569216866))),image/jpeg)"},"contextId":"0lJbB86tFxcFP5oP1l0ppHjC"}}
+frontend_1 | 2018-01-31T12:02:49.497099848Z {"@timestamp":"2018-01-31T12:02:49.496+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"vQS8jLgqOCasYz8kgV3DF2D2","details":{"endpoint":"GET /health","transactionId":"Hq75UUh_SKHuBIKXn1V-S0V0"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"vQS8jLgqOCasYz8kgV3DF2D2","details":{"endpoint":"GET /health","transactionId":"Hq75UUh_SKHuBIKXn1V-S0V0"}}},"contextId":"vpfjo0VsizZqpF5IQVIEoYWx"}}
+frontend_1 | 2018-01-31T12:02:49.497423052Z {"@timestamp":"2018-01-31T12:02:49.497+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"vQS8jLgqOCasYz8kgV3DF2D2","details":{"endpoint":"GET /health","transactionId":"Hq75UUh_SKHuBIKXn1V-S0V0"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"vQS8jLgqOCasYz8kgV3DF2D2","details":{"endpoint":"GET /health","transactionId":"Hq75UUh_SKHuBIKXn1V-S0V0"}}},"contextId":"vpfjo0VsizZqpF5IQVIEoYWx"}}
+frontend_1 | 2018-01-31T12:02:49.499891253Z {"@timestamp":"2018-01-31T12:02:49.499+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"6JpwirR8hwIQwiIemG4rZSKv","details":{"endpoint":"GET /v1/variant/test-partner-id/54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F/crop?width=120&height=80","transactionId":"7fgge1BN3rSGwt3jqFhy0Pfl"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"RoutingContext","id":"6JpwirR8hwIQwiIemG4rZSKv","details":{"endpoint":"GET /v1/variant/test-partner-id/54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F/crop?width=120&height=80","transactionId":"7fgge1BN3rSGwt3jqFhy0Pfl"}}},"contextId":"cM6_-Yy-MgaMOojyYcJyv85o"}}
+frontend_1 | 2018-01-31T12:02:49.500178721Z {"@timestamp":"2018-01-31T12:02:49.499+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"lg-0vOB9WiuRx7O0-mHSHrH4","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantRouting","id":"lg-0vOB9WiuRx7O0-mHSHrH4","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}},"contextId":"cM6_-Yy-MgaMOojyYcJyv85o"}}
+frontend_1 | 2018-01-31T12:02:49.500430444Z {"@timestamp":"2018-01-31T12:02:49.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"KH1wDR2HgnCmqgybQ-T-d70t","operations":[{"name":"VariantRouting","id":"lg-0vOB9WiuRx7O0-mHSHrH4","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantRouting","id":"lg-0vOB9WiuRx7O0-mHSHrH4","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}},"contextId":"cM6_-Yy-MgaMOojyYcJyv85o"}}
+frontend_1 | 2018-01-31T12:02:49.500758530Z {"@timestamp":"2018-01-31T12:02:49.500+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"A1lcCubW1i1n8cey3K5i--yr","operations":[{"name":"RoutingContext","id":"6JpwirR8hwIQwiIemG4rZSKv","details":{"endpoint":"GET /v1/variant/test-partner-id/54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F/crop?width=120&height=80","transactionId":"7fgge1BN3rSGwt3jqFhy0Pfl"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"RoutingContext","id":"6JpwirR8hwIQwiIemG4rZSKv","details":{"endpoint":"GET /v1/variant/test-partner-id/54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F/crop?width=120&height=80","transactionId":"7fgge1BN3rSGwt3jqFhy0Pfl"}}},"contextId":"cM6_-Yy-MgaMOojyYcJyv85o"}}
+frontend_1 | 2018-01-31T12:02:49.501754625Z {"@timestamp":"2018-01-31T12:02:49.501+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"rBbl23eLtHCMsLN5ggoM4duT","details":{}},{"name":"VariantRouting","id":"lg-0vOB9WiuRx7O0-mHSHrH4","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantDecode","id":"rBbl23eLtHCMsLN5ggoM4duT","details":{}}},"contextId":"cM6_-Yy-MgaMOojyYcJyv85o"}}
+frontend_1 | 2018-01-31T12:02:49.502259683Z {"@timestamp":"2018-01-31T12:02:49.501+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantDecode","id":"rBbl23eLtHCMsLN5ggoM4duT","details":{}},{"name":"VariantRouting","id":"lg-0vOB9WiuRx7O0-mHSHrH4","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantDecode","id":"rBbl23eLtHCMsLN5ggoM4duT","details":{}}},"contextId":"cM6_-Yy-MgaMOojyYcJyv85o"}}
+frontend_1 | 2018-01-31T12:02:49.502553021Z {"@timestamp":"2018-01-31T12:02:49.502+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"wxE8qZNxv4_04UOS2uuGCbBu","details":{}},{"name":"VariantRouting","id":"lg-0vOB9WiuRx7O0-mHSHrH4","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"VariantValidate","id":"wxE8qZNxv4_04UOS2uuGCbBu","details":{}}},"contextId":"cM6_-Yy-MgaMOojyYcJyv85o"}}
+frontend_1 | 2018-01-31T12:02:49.502882343Z {"@timestamp":"2018-01-31T12:02:49.502+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"VariantValidate","id":"wxE8qZNxv4_04UOS2uuGCbBu","details":{}},{"name":"VariantRouting","id":"lg-0vOB9WiuRx7O0-mHSHrH4","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"VariantValidate","id":"wxE8qZNxv4_04UOS2uuGCbBu","details":{}}},"contextId":"cM6_-Yy-MgaMOojyYcJyv85o"}}
+frontend_1 | 2018-01-31T12:02:49.503578871Z {"@timestamp":"2018-01-31T12:02:49.502+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:93)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"hFnQM1R3pq7k63y2L1dKBfsK","details":{"request":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F","dimensions":{"width":120,"height":80}}}},{"name":"VariantRouting","id":"lg-0vOB9WiuRx7O0-mHSHrH4","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"START","operation":{"name":"SendCropMessage","id":"hFnQM1R3pq7k63y2L1dKBfsK","details":{"request":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F","dimensions":{"width":120,"height":80}}}}},"contextId":"cM6_-Yy-MgaMOojyYcJyv85o"}}
+frontend_1 | 2018-01-31T12:02:49.513499704Z {"@timestamp":"2018-01-31T12:02:49.512+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"INFO","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.StructuredLogging.withOperation(StructuredLogging.scala:98)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"hFnQM1R3pq7k63y2L1dKBfsK","details":{"request":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F","dimensions":{"width":120,"height":80}}}},{"name":"VariantRouting","id":"lg-0vOB9WiuRx7O0-mHSHrH4","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":[],"details":{"event":"STOP","operation":{"name":"SendCropMessage","id":"hFnQM1R3pq7k63y2L1dKBfsK","details":{"request":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F","dimensions":{"width":120,"height":80}}}}},"contextId":"cM6_-Yy-MgaMOojyYcJyv85o"}}
+frontend_1 | 2018-01-31T12:02:49.673008845Z {"@timestamp":"2018-01-31T12:02:49.672+00:00","team":"team_IS_UNDEFINED","region":"region_IS_UNDEFINED","deployment":"deployment_IS_UNDEFINED","logger":"application","level":"DEBUG","caller":"Caller+2\t at com.bamtech.cde.ripcut.core.logging.LoggerHelper$FutureLogging$$anonfun$logSuccess$1.apply(LoggerHelper.scala:86)\n","message":{"instanceId":"8zPtWj-eK4ugHc-J2xdVqYAC","operations":[{"name":"SendCropMessage","id":"hFnQM1R3pq7k63y2L1dKBfsK","details":{"request":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F","dimensions":{"width":120,"height":80}}}},{"name":"VariantRouting","id":"lg-0vOB9WiuRx7O0-mHSHrH4","details":{"partnerId":"test-partner-id","masterId":"54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F"}}],"service":"frontend","version":"CDE_RIPCUT_0.1.0_201712051316_fc737ac6-SNAPSHOT","labels":["success"],"details":{"message":"CropMessage(PartnerId(test-partner-id),MasterId(54D1D796658485981038003D09DB3A92B891B08837788C01413D400CBF359F9F),Dimensions(120,80),None)","response":"VariantWorkerSuccess(Source(SourceShape(single.out(218803886))),image/jpeg)"},"contextId":"cM6_-Yy-MgaMOojyYcJyv85o"}}
diff --git a/instrumentation/docker/src/test/scala-2.11/net/cakesolutions/testkit/logging/docker/TestDockerLogSource.scala b/instrumentation/docker/src/test/scala-2.11/net/cakesolutions/testkit/logging/docker/TestDockerLogSource.scala
new file mode 100644
index 0000000..6716f16
--- /dev/null
+++ b/instrumentation/docker/src/test/scala-2.11/net/cakesolutions/testkit/logging/docker/TestDockerLogSource.scala
@@ -0,0 +1,18 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.logging.docker
+
+import scala.sys.process.Process
+
+class TestDockerLogSource(exitCode: Int, logLine: String*) extends DockerLogLineSource() {
+ override def pollingProcess(handler: String => Unit): Process = {
+ new Process {
+ override def exitValue(): Int = {
+ logLine.foreach(handler)
+ exitCode
+ }
+
+ override def destroy(): Unit = {}
+ }
+ }
+}
diff --git a/instrumentation/docker/src/test/scala-2.12/net/cakesolutions/testkit/logging/docker/TestDockerLogSource.scala b/instrumentation/docker/src/test/scala-2.12/net/cakesolutions/testkit/logging/docker/TestDockerLogSource.scala
new file mode 100644
index 0000000..66c3fbf
--- /dev/null
+++ b/instrumentation/docker/src/test/scala-2.12/net/cakesolutions/testkit/logging/docker/TestDockerLogSource.scala
@@ -0,0 +1,25 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.logging.docker
+
+import scala.sys.process.Process
+
+class TestDockerLogSource(exitCode: Int, logLine: String*) extends DockerLogLineSource() {
+ override def pollingProcess(handler: String => Unit): Process = {
+ new Process {
+ private[this] var isAlive: Boolean = true
+
+ override def exitValue(): Int = {
+ logLine.foreach(handler)
+ isAlive = false
+ exitCode
+ }
+
+ override def destroy(): Unit = {}
+
+ override def isAlive(): Boolean = {
+ isAlive
+ }
+ }
+ }
+}
diff --git a/instrumentation/docker/src/test/scala/net/cakesolutions/testkit/logging/docker/DockerLogSourceTest.scala b/instrumentation/docker/src/test/scala/net/cakesolutions/testkit/logging/docker/DockerLogSourceTest.scala
new file mode 100644
index 0000000..7cb3e39
--- /dev/null
+++ b/instrumentation/docker/src/test/scala/net/cakesolutions/testkit/logging/docker/DockerLogSourceTest.scala
@@ -0,0 +1,35 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.logging.docker
+
+import java.io.InputStream
+
+import scala.concurrent.duration._
+import scala.io.Source
+
+import monix.execution.Scheduler.Implicits.global
+import monix.reactive.Notification
+import monix.reactive.Notification.OnError
+import net.cakesolutions.testkit.matchers.ObservableMatcher._
+import org.scalatest.{FreeSpec, Matchers}
+import org.scalatest.prop.GeneratorDrivenPropertyChecks
+
+class DockerLogSourceTest extends FreeSpec with Matchers with GeneratorDrivenPropertyChecks {
+
+ implicit val timeout: FiniteDuration = 3.seconds
+
+ "Normal exit" in {
+ val sampleLogStream: InputStream = getClass.getResourceAsStream("/sample-docker-logging.txt")
+ val logLines = Source.fromInputStream(sampleLogStream).getLines.toSeq
+ val testLogSource = new TestDockerLogSource(0, logLines: _*)
+
+ testLogSource.source() should observe[String](logLines: _*)
+ }
+
+ "Abnormal exit" in {
+ val exitCode = 42
+ val testLogSource = new TestDockerLogSource(exitCode)
+
+ testLogSource.source().materialize should observe[Notification[String]](OnError(ProcessTerminated(exitCode)))
+ }
+}
diff --git a/instrumentation/docker/src/test/scala/net/cakesolutions/testkit/logging/docker/formats/LogEventFormatTest.scala b/instrumentation/docker/src/test/scala/net/cakesolutions/testkit/logging/docker/formats/LogEventFormatTest.scala
new file mode 100644
index 0000000..d7e0ddf
--- /dev/null
+++ b/instrumentation/docker/src/test/scala/net/cakesolutions/testkit/logging/docker/formats/LogEventFormatTest.scala
@@ -0,0 +1,44 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.logging.docker.formats
+
+import java.io.InputStream
+import java.time.format.DateTimeFormatter
+
+import scala.io.Source
+
+import io.circe.Json
+import net.cakesolutions.testkit.generators.TestGenerators.logEventGen
+import net.cakesolutions.testkit.logging.LogEvent
+import org.scalatest.{FreeSpec, Inside, Matchers}
+import org.scalatest.prop.GeneratorDrivenPropertyChecks
+
+class LogEventFormatTest extends FreeSpec with Matchers with Inside with GeneratorDrivenPropertyChecks {
+
+ val sampleLogStream: InputStream = getClass.getResourceAsStream("/sample-docker-logging.txt")
+ val formatter: DateTimeFormatter = DateTimeFormatter.ISO_OFFSET_DATE_TIME
+
+ "Can serialise and deserialise logging events" in {
+ forAll(logEventGen()) { logEvent =>
+ inside(LogEventFormat.parse(decodeAsString(logEvent))) {
+ case Some(Right(event)) =>
+ event.image shouldEqual logEvent.image
+ event.message shouldEqual logEvent.message
+ event.time.toInstant shouldEqual logEvent.time.toInstant
+ }
+ }
+ }
+
+ "Actual Docker Logging can be parsed" in {
+ Source.fromInputStream(sampleLogStream).getLines.foreach { line =>
+ inside(LogEventFormat.parse(line)) {
+ case Some(Right(_)) =>
+ assert(true)
+ }
+ }
+ }
+
+ private def decodeAsString(event: LogEvent[Json]): String = {
+ s"${event.image} | ${formatter.format(event.time)} ${event.message.noSpaces}"
+ }
+}
diff --git a/instrumentation/elasticsearch/src/main/scala/net/cakesolutions/testkit/logging/elasticsearch/ElasticSearchLogLineSource.scala b/instrumentation/elasticsearch/src/main/scala/net/cakesolutions/testkit/logging/elasticsearch/ElasticSearchLogLineSource.scala
new file mode 100644
index 0000000..d736a03
--- /dev/null
+++ b/instrumentation/elasticsearch/src/main/scala/net/cakesolutions/testkit/logging/elasticsearch/ElasticSearchLogLineSource.scala
@@ -0,0 +1,27 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.logging.elasticsearch
+
+import scala.concurrent.Promise
+
+import io.circe.Json
+import monix.execution.Scheduler
+import monix.reactive.observers.Subscriber
+import net.cakesolutions.testkit.logging.LineLoggingSource
+
+// $COVERAGE-OFF$ disabled until this is implemented
+
+object ElasticSearchLogLineSource extends LineLoggingSource[Json] {
+
+ /** @see net.cakesolutions.testkit.logging.LoggingSource */
+ override protected def subscriberPolling(
+ subscriber: Subscriber[Json],
+ cancelP: Promise[Unit]
+ )(implicit
+ scheduler: Scheduler
+ ): Unit = {
+ ??? // TODO: needs implementing
+ }
+}
+
+// $COVERAGE-ON$
diff --git a/instrumentation/elasticsearch/src/main/scala/net/cakesolutions/testkit/logging/elasticsearch/formats/LogEventFormat.scala b/instrumentation/elasticsearch/src/main/scala/net/cakesolutions/testkit/logging/elasticsearch/formats/LogEventFormat.scala
new file mode 100644
index 0000000..ae843ba
--- /dev/null
+++ b/instrumentation/elasticsearch/src/main/scala/net/cakesolutions/testkit/logging/elasticsearch/formats/LogEventFormat.scala
@@ -0,0 +1,8 @@
+// Copyright 2018 Cake Solutions Limited
+
+package net.cakesolutions.testkit.logging.elasticsearch.formats
+
+/**
+ * TODO: needs implementing
+ */
+object LogEventFormat
diff --git a/project/CommonProject.scala b/project/CommonProject.scala
new file mode 100644
index 0000000..5d29c7d
--- /dev/null
+++ b/project/CommonProject.scala
@@ -0,0 +1,60 @@
+// Copyright 2018 Cake Solutions Limited
+// Copyright 2016-2017 Carl Pulley
+
+import sbt.Keys._
+import sbt._
+import scoverage.ScoverageKeys.{coverageExcludedFiles, coverageFailOnMinimum, coverageMinimum}
+
+/**
+ * Common project settings
+ */
+object CommonProject {
+ val settings =
+ Seq(
+ organization := "net.cakesolutions",
+ // The following values need to be synced with those in Jenkinsfile
+ crossScalaVersions := Seq("2.11.12", "2.12.4"),
+ scalaVersion := crossScalaVersions.value.head,
+ scalacOptions in Compile ++= Seq(
+ "-encoding", "UTF-8",
+ "-feature",
+ "-deprecation",
+ "-unchecked",
+ "-language:postfixOps",
+ "-language:implicitConversions",
+ "-Xlint",
+ "-Yno-adapted-args",
+ "-Ywarn-dead-code",
+ "-Ywarn-numeric-widen",
+ "-Xfuture",
+ "-Ywarn-unused-import",
+ "-Ypartial-unification",
+ "-Xfatal-warnings"
+ ),
+ scalacOptions in (Compile, doc) ++= {
+ val nm = (name in(Compile, doc)).value
+ val ver = (version in(Compile, doc)).value
+
+ DefaultOptions.scaladoc(nm, ver)
+ },
+ javacOptions in (Compile, compile) ++= Seq(
+ "-source", "1.8",
+ "-target", "1.8",
+ "-Xlint:all",
+ "-Xlint:-options",
+ "-Xlint:-path",
+ "-Xlint:-processing",
+ "-Werror"
+ ),
+ javacOptions in doc := Seq(),
+ javaOptions += "-Xmx2G",
+ outputStrategy := Some(StdoutOutput),
+ testOptions in Test += Tests.Argument("-oFD"),
+ fork := true,
+ fork in test := true,
+ coverageMinimum := 0,
+ coverageFailOnMinimum := true,
+ coverageExcludedFiles := ".*/target/.*",
+ dependencyOverrides += Dependencies.commonsLogging
+ )
+}
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
new file mode 100644
index 0000000..0ca037b
--- /dev/null
+++ b/project/Dependencies.scala
@@ -0,0 +1,35 @@
+// Copyright 2018 Cake Solutions Limited
+// Copyright 2016-2017 Carl Pulley
+
+import sbt.Keys._
+import sbt._
+
+object Dependencies {
+ object aws {
+ private val version = "1.11.271"
+
+ val logs: ModuleID = "com.amazonaws" % "aws-java-sdk-logs" % version
+ }
+
+ object circe {
+ private val version = "0.9.1"
+
+ val core: ModuleID = "io.circe" %% "circe-core" % version
+ val generic: ModuleID = "io.circe" %% "circe-generic" % version
+ val parser: ModuleID = "io.circe" %% "circe-parser" % version
+ }
+
+ val commonsLogging: ModuleID = "commons-logging" % "commons-logging" % "1.2"
+ val logback: ModuleID = "ch.qos.logback" % "logback-classic" % "1.2.3"
+ val logging: ModuleID = "com.typesafe.scala-logging" %% "scala-logging" % "3.7.2"
+
+ object monix {
+ private val version = "3.0.0-M3"
+
+ val core: ModuleID = "io.monix" %% "monix" % version
+ val reactive: ModuleID = "io.monix" %% "monix-reactive" % version
+ }
+
+ val scalacheck: ModuleID = "org.scalacheck" %% "scalacheck" % "1.13.5"
+ val scalatest: ModuleID = "org.scalatest" %% "scalatest" % "3.0.5"
+}
diff --git a/project/Publish.scala b/project/Publish.scala
new file mode 100644
index 0000000..0d48575
--- /dev/null
+++ b/project/Publish.scala
@@ -0,0 +1,38 @@
+// Copyright 2018 Cake Solutions Limited
+// Copyright 2016-2017 Carl Pulley
+
+import sbt.Keys._
+import sbt._
+
+object Publish {
+ val settings = Seq(
+ publishMavenStyle := true,
+ publishArtifact in Test := false,
+ pomIncludeRepository := { _ => false },
+ publishTo := {
+ val nexus = "https://oss.sonatype.org/"
+ if (isSnapshot.value) {
+ Some("snapshots" at nexus + "content/repositories/snapshots")
+ } else {
+ Some("releases" at nexus + "service/local/staging/deploy/maven2")
+ }
+ },
+ pomExtra := (
+ https://github.com/carlpulley/system-testkit
+
+
+ Apache License 2.0
+ http://www.apache.org/licenses/LICENSE-2.0.txt
+ repo
+
+
+
+
+ carlpulley
+ Carl Pulley
+ https://github.com/carlpulley
+
+
+ )
+ )
+}
diff --git a/project/ScalaDoc.scala b/project/ScalaDoc.scala
new file mode 100644
index 0000000..a994b74
--- /dev/null
+++ b/project/ScalaDoc.scala
@@ -0,0 +1,12 @@
+// Copyright 2018 Cake Solutions Limited
+// Copyright 2016-2017 Carl Pulley
+
+import com.typesafe.sbt.SbtGit.git
+import sbt.Keys._
+
+object ScalaDoc {
+ val settings =
+ Seq(
+ git.remoteRepo := s"https://github.com/carlpulley/${name.value}.git"
+ )
+}
diff --git a/project/build.properties b/project/build.properties
new file mode 100644
index 0000000..cddd489
--- /dev/null
+++ b/project/build.properties
@@ -0,0 +1 @@
+sbt.version = 0.13.16
diff --git a/project/plugins.sbt b/project/plugins.sbt
new file mode 100644
index 0000000..4180f24
--- /dev/null
+++ b/project/plugins.sbt
@@ -0,0 +1,14 @@
+// Copyright 2018 Cake Solutions Limited
+// Copyright 2016-2017 Carl Pulley
+
+scalacOptions ++= Seq("-deprecation", "-Xlint", "-unchecked", "-language:_")
+
+resolvers += "Typesafe Repository" at "https://repo.typesafe.com/typesafe/releases/"
+resolvers += "jgit-repo" at "http://download.eclipse.org/jgit/maven"
+
+addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0")
+addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.2")
+addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.9.3")
+addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.3.1")
+addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
+addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.0")
diff --git a/src/src/index.html b/src/src/index.html
new file mode 100644
index 0000000..bf1f3c3
--- /dev/null
+++ b/src/src/index.html
@@ -0,0 +1,21 @@
+
+
+
+
+ Project Documentation
+
+
+
+Go to the project documentation
+
+
+