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 d2ab894 commit 78481b1Copy full SHA for 78481b1
tests/templates/kuttl/smoke/30_test-metrics.py
@@ -7,6 +7,7 @@
7
response = requests.get(metrics_url)
8
9
assert response.status_code == 200, "Metrics endpoint must return a 200 status code"
10
-assert "bundle_loaded_counter" in response.text, f"Metric bundle_loaded_counter should exist in {metrics_url}"
+assert "bundle_loaded_counter" in response.text,
11
+ f"Metric bundle_loaded_counter should exist in {metrics_url}"
12
13
print("Metrics test successful!")
tests/templates/kuttl/smoke/30_test-regorule.py
@@ -43,5 +43,3 @@
43
+ " - expected: {'result': {'hello': True}}"
44
)
45
exit(-1)
46
-
47
- metrics = requests.get(f"{url}/metrics")
0 commit comments