Skip to content

Commit

Permalink
Fix workflow param value for Grafana link (apache#31011)
Browse files Browse the repository at this point in the history
* added link to Grafana statistics

* added the important_signals category

* fix workflow param value
  • Loading branch information
andreydevyatkin authored Apr 17, 2024
1 parent e3077b7 commit 4f964bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .test-infra/tools/flaky_test_detection.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def create_github_issue(repo, alert):
if GRAFANA_PANEL_IDS.get(alert.workflow_dashboard_category):
grafana_workflow_runs_url = f"{GRAFANA_URL}/d/CTYdoxP4z/ga-post-commits-status?orgId=1" \
f"&viewPanel={GRAFANA_PANEL_IDS[alert.workflow_dashboard_category]}" \
f"&var-Workflow={alert.workflow_name}"
f"&var-Workflow={alert.workflow_name.replace(' ', '%20')}"
body += f"See also Grafana statistics: {grafana_workflow_runs_url}"
labels = ["flaky_test", f"workflow_id: {alert.workflow_id}", "bug", "P1"]
print("___")
Expand Down

0 comments on commit 4f964bf

Please sign in to comment.