We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98c5732 commit b5a685dCopy full SHA for b5a685d
1 file changed
tests/templates/kuttl/smoke/test_zookeeper.py
@@ -64,6 +64,12 @@ def check_monitoring(hosts):
64
response = try_get(url)
65
66
if response.ok:
67
+ # arbitrary metric was chosen to test if metrics are present in the response
68
+ if "quorum_size" in response.text:
69
+ continue
70
+ else:
71
+ print("Error for [" + url + "]: missing metrics")
72
+ exit(-1)
73
continue
74
else:
75
print("Error for [" + url + "]: could not access monitoring")
0 commit comments