You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by sc...@apache.org on 2019/01/25 18:40:03 UTC

[beam] branch master updated: Add additional debug output for metrics prober test failures

This is an automated email from the ASF dual-hosted git repository.

scott pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 8317d61  Add additional debug output for metrics prober test failures
     new b80fc41  Merge pull request #7625: [BEAM-6381] Add additional debug output for metrics prober test failures
8317d61 is described below

commit 8317d61b6b0f61e57a33e3135baab6b712eea33f
Author: Scott Wegner <sc...@apache.org>
AuthorDate: Fri Jan 25 09:43:43 2019 -0800

    Add additional debug output for metrics prober test failures
---
 .test-infra/metrics/src/test/groovy/ProberTests.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.test-infra/metrics/src/test/groovy/ProberTests.groovy b/.test-infra/metrics/src/test/groovy/ProberTests.groovy
index 4b65dbe..a0c8481 100644
--- a/.test-infra/metrics/src/test/groovy/ProberTests.groovy
+++ b/.test-infra/metrics/src/test/groovy/ProberTests.groovy
@@ -45,7 +45,7 @@ class ProberTests {
     def alerts = new JsonSlurper().parseText(alertsJson)
     assert alerts.size > 0
     alerts.each { alert ->
-      assert alert.state == 'ok' : "Input data is stale! ${grafanaEndpoint}/d/data-freshness"
+      assert alert.state == 'ok' : "Input data is stale! ${alert}\n   See: ${grafanaEndpoint}/d/data-freshness"
     }
   }
 }