From 99d7ba0ac5a89c12ce4d74f3d38bf63f68d98746 Mon Sep 17 00:00:00 2001 From: Brian Harrington Date: Wed, 6 Mar 2024 14:37:49 -0600 Subject: [PATCH 1/5] eval: require precise scoping for hi-res streams For hi-res streams, require more precise scoping that allows us to more efficiently match the data and run it only where needed. This would ideally be applied everywhere, but for backwards compatiblity the 1m step is opted out for now. --- .../atlas/eval/stream/ExprInterpreter.scala | 9 -- .../atlas/eval/stream/StreamContext.scala | 39 ++++++++ .../atlas/eval/stream/EvaluatorSuite.scala | 91 ++++++++++++++++--- 3 files changed, 118 insertions(+), 21 deletions(-) diff --git a/atlas-eval/src/main/scala/com/netflix/atlas/eval/stream/ExprInterpreter.scala b/atlas-eval/src/main/scala/com/netflix/atlas/eval/stream/ExprInterpreter.scala index da435dc80..bee142aad 100644 --- a/atlas-eval/src/main/scala/com/netflix/atlas/eval/stream/ExprInterpreter.scala +++ b/atlas-eval/src/main/scala/com/netflix/atlas/eval/stream/ExprInterpreter.scala @@ -27,7 +27,6 @@ import com.netflix.atlas.eval.stream.Evaluator.DataSources import com.netflix.atlas.eval.util.HostRewriter import com.typesafe.config.Config -import java.time.Duration import scala.util.Success private[stream] class ExprInterpreter(config: Config) { @@ -36,17 +35,9 @@ private[stream] class ExprInterpreter(config: Config) { private val hostRewriter = new HostRewriter(config.getConfig("atlas.eval.host-rewrite")) - private val maxStep = config.getDuration("atlas.eval.stream.limits.max-step") - def eval(uri: Uri): GraphConfig = { val graphCfg = grapher.toGraphConfig(uri) - // Check step size is within bounds - if (graphCfg.stepSize > maxStep.toMillis) { - val step = Duration.ofMillis(graphCfg.stepSize) - throw new IllegalArgumentException(s"max allowed step size exceeded ($step > $maxStep)") - } - // Check that data expressions are supported. The streaming path doesn't support // time shifts, filters, and integral. The filters and integral are excluded because // they can be confusing as the time window for evaluation is not bounded. diff --git a/atlas-eval/src/main/scala/com/netflix/atlas/eval/stream/StreamContext.scala b/atlas-eval/src/main/scala/com/netflix/atlas/eval/stream/StreamContext.scala index c7a0348ee..88851d55c 100644 --- a/atlas-eval/src/main/scala/com/netflix/atlas/eval/stream/StreamContext.scala +++ b/atlas-eval/src/main/scala/com/netflix/atlas/eval/stream/StreamContext.scala @@ -40,6 +40,7 @@ import com.netflix.spectator.api.NoopRegistry import com.netflix.spectator.api.Registry import com.typesafe.config.Config +import java.time.Duration import scala.concurrent.Future import scala.util.Failure import scala.util.Success @@ -84,6 +85,9 @@ private[stream] class StreamContext( def maxIntermediateDatapointsPerExpression: Int = config.getInt("limits.max-intermediate-datapoints") + // Maximum allowed step size for a stream + private val maxStep = config.getDuration("limits.max-step") + val interpreter = new ExprInterpreter(rootConfig) def findBackendForUri(uri: Uri): Backend = { @@ -150,11 +154,25 @@ private[stream] class StreamContext( Try { val uri = Uri(ds.uri) + // Check step size is within bounds + if (ds.step().toMillis > maxStep.toMillis) { + throw new IllegalArgumentException( + s"max allowed step size exceeded (${ds.step()} > $maxStep)" + ) + } + // Check that expression is parseable and perform basic static analysis of DataExprs to // weed out expensive queries up front val results = interpreter.eval(uri).exprs results.foreach(_.expr.dataExprs.foreach(validateDataExpr)) + // For hi-res streams, require more precise scoping that allows us to more efficiently + // match the data and run it only where needed. This would ideally be applied everywhere, + // but for backwards compatiblity the 1m step is opted out for now. + if (ds.step().toMillis < 60_000) { + results.foreach(_.expr.dataExprs.foreach(expr => restrictsNameAndApp(expr.query))) + } + // Check that there is a backend available for it findBackendForUri(uri) @@ -178,6 +196,27 @@ private[stream] class StreamContext( } } + private def restrictsNameAndApp(query: Query): Unit = { + val dnf = Query.dnfList(query) + if (!dnf.forall(isRestricted)) { + throw new IllegalArgumentException( + s"rejected expensive query [$query], hi-res streams " + + "must restrict name and nf.app with :eq or :in" + ) + } + } + + private def isRestricted(query: Query): Boolean = { + isRestricted(query, Set("nf.app", "nf.cluster", "nf.asg")) && isRestricted(query, Set("name")) + } + + private def isRestricted(query: Query, keys: Set[String]): Boolean = query match { + case Query.And(q1, q2) => isRestricted(q1, keys) || isRestricted(q2, keys) + case Query.Equal(k, _) => keys.contains(k) + case Query.In(k, _) => keys.contains(k) + case _ => false + } + /** * Emit an error to the sources where the number of input * or intermediate datapoints exceed for an expression. diff --git a/atlas-eval/src/test/scala/com/netflix/atlas/eval/stream/EvaluatorSuite.scala b/atlas-eval/src/test/scala/com/netflix/atlas/eval/stream/EvaluatorSuite.scala index 55677091c..43437a2ba 100644 --- a/atlas-eval/src/test/scala/com/netflix/atlas/eval/stream/EvaluatorSuite.scala +++ b/atlas-eval/src/test/scala/com/netflix/atlas/eval/stream/EvaluatorSuite.scala @@ -363,14 +363,6 @@ class EvaluatorSuite extends FunSuite { testError(ds1, msg) } - test("create processor, reject large step size") { - val expr = "name,foo,:eq,:sum" - val uri = s"http://test/api/v1/graph?q=$expr&step=5m" - val msg = s"IllegalArgumentException: max allowed step size exceeded (PT5M > PT1M)" - val ds1 = Evaluator.DataSources.of(ds("one", uri)) - testError(ds1, msg) - } - test("processor handles multiple steps") { val evaluator = new Evaluator(config, registry, system) @@ -469,16 +461,19 @@ class EvaluatorSuite extends FunSuite { assertEquals(ds.step, Duration.ofMinutes(1)) } - test("validate: ok") { + private def validateOk(params: String): Unit = { val evaluator = new Evaluator(config, registry, system) val ds = new Evaluator.DataSource( "test", - Duration.ofMinutes(1), - "resource:///gc-pause.dat?q=name,jvm.gc.pause,:eq,:dist-max,(,nf.asg,nf.node,),:by" + s"resource:///gc-pause.dat?$params" ) evaluator.validate(ds) } + test("validate: ok") { + validateOk("q=name,jvm.gc.pause,:eq,:dist-max,(,nf.asg,nf.node,),:by") + } + test("validate: bad expression") { val evaluator = new Evaluator(config, registry, system) val ds = new Evaluator.DataSource( @@ -503,7 +498,6 @@ class EvaluatorSuite extends FunSuite { evaluator.validate(ds) } assert(e.getMessage.startsWith(s":$op not supported for streaming evaluation ")) - } test("validate: unsupported operation `:offset`") { @@ -530,6 +524,18 @@ class EvaluatorSuite extends FunSuite { invalidOperator("topk", "name,jvm.gc.pause,:eq,:sum,max,5,:topk") } + test("validate: reject large step sizes") { + val evaluator = new Evaluator(config, registry, system) + val ds = new Evaluator.DataSource( + "test", + "resource:///gc-pause.dat?q=name,jvm.gc.pause,:eq,:sum&step=5m" + ) + val e = intercept[IllegalArgumentException] { + evaluator.validate(ds) + } + assertEquals(e.getMessage, "max allowed step size exceeded (PT5M > PT1M)") + } + test("validate: unknown backend") { val evaluator = new Evaluator(config, registry, system) val ds = new Evaluator.DataSource( @@ -543,6 +549,67 @@ class EvaluatorSuite extends FunSuite { assertEquals(e.getMessage, "unknownhost.com") } + test("validate: hi-res with eq for name and app") { + validateOk("q=name,foo,:eq,nf.app,www,:eq,:and,:sum&step=5s") + } + + test("validate: hi-res with eq for name and cluster") { + validateOk("q=name,foo,:eq,nf.cluster,www-dev,:eq,:and,:sum&step=5s") + } + + test("validate: hi-res with eq for name and asg") { + validateOk("q=name,foo,:eq,nf.asg,www-dev-v000,:eq,:and,:sum&step=5s") + } + + test("validate: hi-res with in for name") { + validateOk("q=name,(,foo,bar,),:in,nf.app,www,:eq,:and,:sum&step=5s") + } + + test("validate: hi-res with in for app") { + validateOk("q=name,foo,:eq,nf.app,(,www,www2,),:in,:and,:sum&step=5s") + } + + test("validate: hi-res with in for cluster") { + validateOk("q=name,foo,:eq,nf.cluster,(,www-dev,www-prod,),:in,:and,:sum&step=5s") + } + + test("validate: hi-res with in for asg") { + validateOk("q=name,foo,:eq,nf.asg,(,www-dev-v001,www-dev-v002,),:in,:and,:sum&step=5s") + } + + test("validate: hi-res with or for cluster") { + validateOk( + "q=name,foo,:eq,nf.cluster,www-dev,:eq,nf.cluster,www-prod,:eq,:or,:and,:sum&step=5s" + ) + } + + private def invalidHiResQuery(expr: String): Unit = { + val evaluator = new Evaluator(config, registry, system) + val ds = new Evaluator.DataSource( + "test", + s"resource:///gc-pause.dat?q=$expr&step=5s" + ) + val e = intercept[IllegalArgumentException] { + evaluator.validate(ds) + } + assertEquals( + e.getMessage, + s"rejected expensive query [$expr], hi-res streams must restrict name and nf.app with :eq or :in" + ) + } + + test("validate: hi-res with regex for name") { + invalidHiResQuery("name,foo,:re,nf.app,www,:eq,:and") + } + + test("validate: hi-res with not name") { + invalidHiResQuery("name,foo,:eq,:not,nf.app,www,:eq,:and") + } + + test("validate: hi-res with regex for app") { + invalidHiResQuery("name,foo,:eq,nf.app,www,:re,:and") + } + private val datapointStep = Duration.ofMillis(1) private def sampleData(numGroups: Int, numDatapoints: Int): List[Evaluator.DatapointGroup] = { From 9e5474900aeca1a43a1e55cd54955385795819ce Mon Sep 17 00:00:00 2001 From: Brian Harrington Date: Wed, 6 Mar 2024 14:39:51 -0600 Subject: [PATCH 2/5] cleanup import --- .../main/scala/com/netflix/atlas/eval/stream/StreamContext.scala | 1 - 1 file changed, 1 deletion(-) diff --git a/atlas-eval/src/main/scala/com/netflix/atlas/eval/stream/StreamContext.scala b/atlas-eval/src/main/scala/com/netflix/atlas/eval/stream/StreamContext.scala index 88851d55c..418c4256a 100644 --- a/atlas-eval/src/main/scala/com/netflix/atlas/eval/stream/StreamContext.scala +++ b/atlas-eval/src/main/scala/com/netflix/atlas/eval/stream/StreamContext.scala @@ -40,7 +40,6 @@ import com.netflix.spectator.api.NoopRegistry import com.netflix.spectator.api.Registry import com.typesafe.config.Config -import java.time.Duration import scala.concurrent.Future import scala.util.Failure import scala.util.Success From b3ce436eba739d1694201370b90015d93f199975 Mon Sep 17 00:00:00 2001 From: Brian Harrington Date: Wed, 6 Mar 2024 14:45:09 -0600 Subject: [PATCH 3/5] fix compile error for some scala versions --- .../scala/com/netflix/atlas/eval/stream/StreamContext.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/atlas-eval/src/main/scala/com/netflix/atlas/eval/stream/StreamContext.scala b/atlas-eval/src/main/scala/com/netflix/atlas/eval/stream/StreamContext.scala index 418c4256a..c23f9a7e3 100644 --- a/atlas-eval/src/main/scala/com/netflix/atlas/eval/stream/StreamContext.scala +++ b/atlas-eval/src/main/scala/com/netflix/atlas/eval/stream/StreamContext.scala @@ -154,9 +154,9 @@ private[stream] class StreamContext( val uri = Uri(ds.uri) // Check step size is within bounds - if (ds.step().toMillis > maxStep.toMillis) { + if (ds.step.toMillis > maxStep.toMillis) { throw new IllegalArgumentException( - s"max allowed step size exceeded (${ds.step()} > $maxStep)" + s"max allowed step size exceeded (${ds.step} > $maxStep)" ) } @@ -168,7 +168,7 @@ private[stream] class StreamContext( // For hi-res streams, require more precise scoping that allows us to more efficiently // match the data and run it only where needed. This would ideally be applied everywhere, // but for backwards compatiblity the 1m step is opted out for now. - if (ds.step().toMillis < 60_000) { + if (ds.step.toMillis < 60_000) { results.foreach(_.expr.dataExprs.foreach(expr => restrictsNameAndApp(expr.query))) } From a69a94a96e74e47304561f50073f498017458d22 Mon Sep 17 00:00:00 2001 From: Brian Harrington Date: Wed, 6 Mar 2024 15:49:59 -0600 Subject: [PATCH 4/5] fix tests --- atlas-eval/src/test/resources/05s.dat | 716 +++++++++--------- atlas-eval/src/test/resources/60s.dat | 496 ++++++------ .../atlas/eval/stream/EvaluatorSuite.scala | 6 +- 3 files changed, 610 insertions(+), 608 deletions(-) diff --git a/atlas-eval/src/test/resources/05s.dat b/atlas-eval/src/test/resources/05s.dat index a09b0bea9..6e19bc317 100644 --- a/atlas-eval/src/test/resources/05s.dat +++ b/atlas-eval/src/test/resources/05s.dat @@ -1,358 +1,358 @@ -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479705000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":5625.6} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479710000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":13212.8} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479715000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":340.8} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479720000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479725000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":542.4} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479730000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":1363.2} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479735000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479740000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479745000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":1136.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479750000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":340.8} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479755000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479760000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479765000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479770000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":9304.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479775000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":1363.2} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479780000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479785000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479790000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479795000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479800000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479805000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479810000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479815000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":403.2} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479820000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479825000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479830000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479835000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479840000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479845000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479850000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479855000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479860000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479865000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479870000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479875000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479880000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479885000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479890000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479895000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479900000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479905000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479910000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479915000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479920000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479925000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479930000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479935000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479940000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479945000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479950000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479955000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479960000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":201.6} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479965000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479970000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479975000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479980000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479985000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479990000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535479995000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480000000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480005000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480010000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480015000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480020000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480025000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480030000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480035000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480040000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480045000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480050000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":1028.8} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480055000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480060000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480065000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480070000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480075000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480080000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480085000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480090000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480095000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480100000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480105000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480110000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480115000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480120000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480125000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480130000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480135000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480140000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480145000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480150000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480155000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480160000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480165000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480170000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480175000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480180000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480185000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480190000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480195000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480200000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480205000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480210000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":107.2} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480215000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480220000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480225000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480230000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480235000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480240000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480245000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480250000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480255000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480260000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480265000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480270000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480275000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480280000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480285000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480290000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480295000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":5000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0"}]} -{"type":"datapoint","timestamp":1535480300000,"id":"5bdfbc096d5fbf2eb83c9548c76e0d78ba7cb6a0","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479705000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":5625.6} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479710000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":13212.8} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479715000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":340.8} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479720000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479725000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":542.4} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479730000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":1363.2} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479735000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479740000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479745000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":1136.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479750000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":340.8} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479755000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479760000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479765000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479770000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":9304.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479775000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":1363.2} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479780000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479785000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479790000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479795000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479800000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479805000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479810000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479815000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":403.2} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479820000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479825000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479830000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479835000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479840000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479845000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479850000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479855000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479860000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479865000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479870000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479875000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479880000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479885000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479890000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479895000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479900000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479905000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479910000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479915000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479920000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479925000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479930000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479935000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479940000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479945000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479950000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479955000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479960000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":201.6} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479965000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479970000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479975000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479980000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479985000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479990000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535479995000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480000000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480005000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480010000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480015000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480020000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480025000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480030000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480035000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480040000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480045000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480050000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":1028.8} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480055000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480060000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480065000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480070000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480075000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480080000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480085000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480090000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480095000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480100000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480105000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480110000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480115000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480120000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480125000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480130000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480135000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480140000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480145000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480150000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480155000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480160000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480165000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480170000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480175000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480180000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480185000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480190000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480195000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480200000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480205000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480210000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":107.2} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480215000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480220000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480225000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480230000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480235000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480240000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480245000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480250000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480255000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480260000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480265000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480270000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480275000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480280000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480285000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480290000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480295000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":5000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996"}]} +{"type":"datapoint","timestamp":1535480300000,"id":"de0d3b4047935ebf8c116d4b120c82028f2d6996","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} diff --git a/atlas-eval/src/test/resources/60s.dat b/atlas-eval/src/test/resources/60s.dat index dbcbb0d45..d3c757bf2 100644 --- a/atlas-eval/src/test/resources/60s.dat +++ b/atlas-eval/src/test/resources/60s.dat @@ -1,248 +1,248 @@ -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"datapoint","timestamp":1535479740000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e","tags":{"name":"jvm.gc.allocationRate"},"value":100939.73333333334} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"datapoint","timestamp":1535479800000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e","tags":{"name":"jvm.gc.allocationRate"},"value":1012.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"datapoint","timestamp":1535479860000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e","tags":{"name":"jvm.gc.allocationRate"},"value":33.6} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"datapoint","timestamp":1535479920000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"datapoint","timestamp":1535479980000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e","tags":{"name":"jvm.gc.allocationRate"},"value":16.8} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"datapoint","timestamp":1535480040000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"datapoint","timestamp":1535480100000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e","tags":{"name":"jvm.gc.allocationRate"},"value":85.73333333333333} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"datapoint","timestamp":1535480160000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"datapoint","timestamp":1535480220000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e","tags":{"name":"jvm.gc.allocationRate"},"value":8.933333333333334} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"datapoint","timestamp":1535480280000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} -{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,:sum","frequency":60000,"id":"36ac953ad0547e863e4c024b19fe61a1779aad4e"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"datapoint","timestamp":1535479740000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a","tags":{"name":"jvm.gc.allocationRate"},"value":100939.73333333334} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"datapoint","timestamp":1535479800000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a","tags":{"name":"jvm.gc.allocationRate"},"value":1012.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"datapoint","timestamp":1535479860000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a","tags":{"name":"jvm.gc.allocationRate"},"value":33.6} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"datapoint","timestamp":1535479920000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"datapoint","timestamp":1535479980000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a","tags":{"name":"jvm.gc.allocationRate"},"value":16.8} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"datapoint","timestamp":1535480040000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"datapoint","timestamp":1535480100000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a","tags":{"name":"jvm.gc.allocationRate"},"value":85.73333333333333} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"datapoint","timestamp":1535480160000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"datapoint","timestamp":1535480220000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a","tags":{"name":"jvm.gc.allocationRate"},"value":8.933333333333334} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"datapoint","timestamp":1535480280000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a","tags":{"name":"jvm.gc.allocationRate"},"value":0.0} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} +{"type":"subscription","expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","metrics":[{"expression":"name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum","frequency":60000,"id":"09a3ab6a2f9d62544b9fdd561fa12c4c8c627a9a"}]} diff --git a/atlas-eval/src/test/scala/com/netflix/atlas/eval/stream/EvaluatorSuite.scala b/atlas-eval/src/test/scala/com/netflix/atlas/eval/stream/EvaluatorSuite.scala index 43437a2ba..84a570b15 100644 --- a/atlas-eval/src/test/scala/com/netflix/atlas/eval/stream/EvaluatorSuite.scala +++ b/atlas-eval/src/test/scala/com/netflix/atlas/eval/stream/EvaluatorSuite.scala @@ -26,6 +26,8 @@ import org.apache.pekko.stream.scaladsl.Keep import org.apache.pekko.stream.scaladsl.Sink import org.apache.pekko.stream.scaladsl.Source import com.netflix.atlas.chart.util.SrcPath +import com.netflix.atlas.core.util.Hash +import com.netflix.atlas.core.util.Strings import com.netflix.atlas.eval.model.ArrayData import com.netflix.atlas.eval.model.LwcDatapoint import com.netflix.atlas.eval.model.LwcDiagnosticMessage @@ -367,8 +369,8 @@ class EvaluatorSuite extends FunSuite { val evaluator = new Evaluator(config, registry, system) val ds1 = Evaluator.DataSources.of( - ds("one", "resource:///05s.dat?q=name,jvm.gc.allocationRate,:eq,:sum", 5), - ds("two", "resource:///60s.dat?q=name,jvm.gc.allocationRate,:eq,:sum", 60) + ds("one", "resource:///05s.dat?q=name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum", 5), + ds("two", "resource:///60s.dat?q=name,jvm.gc.allocationRate,:eq,nf.app,foo,:eq,:and,:sum", 60) ) val future = Source From ba1625534e8c9450531041323b284e3a6d3af986 Mon Sep 17 00:00:00 2001 From: Brian Harrington Date: Wed, 6 Mar 2024 15:55:01 -0600 Subject: [PATCH 5/5] unused imports --- .../scala/com/netflix/atlas/eval/stream/EvaluatorSuite.scala | 2 -- 1 file changed, 2 deletions(-) diff --git a/atlas-eval/src/test/scala/com/netflix/atlas/eval/stream/EvaluatorSuite.scala b/atlas-eval/src/test/scala/com/netflix/atlas/eval/stream/EvaluatorSuite.scala index 84a570b15..2525f80f4 100644 --- a/atlas-eval/src/test/scala/com/netflix/atlas/eval/stream/EvaluatorSuite.scala +++ b/atlas-eval/src/test/scala/com/netflix/atlas/eval/stream/EvaluatorSuite.scala @@ -26,8 +26,6 @@ import org.apache.pekko.stream.scaladsl.Keep import org.apache.pekko.stream.scaladsl.Sink import org.apache.pekko.stream.scaladsl.Source import com.netflix.atlas.chart.util.SrcPath -import com.netflix.atlas.core.util.Hash -import com.netflix.atlas.core.util.Strings import com.netflix.atlas.eval.model.ArrayData import com.netflix.atlas.eval.model.LwcDatapoint import com.netflix.atlas.eval.model.LwcDiagnosticMessage