Path: blob/main/operations/observability/mixins/IDE/rules/vscode.yaml
2500 views
# Copyright (c) 2022 Gitpod GmbH. All rights reserved.1# Licensed under the GNU Affero General Public License (AGPL).2# See License.AGPL.txt in the project root for license information.34apiVersion: monitoring.coreos.com/v15kind: PrometheusRule6metadata:7labels:8prometheus: k8s9role: alert-rules10name: openvsx-monitoring-rules11namespace: monitoring-satellite12spec:13groups:14- name: vscode15rules:16- alert: VSCodeExtensionInstallFailuresRatioTooHigh17labels:18severity: critical19dedicated: included20for: 20m21annotations:22runbook_url: https://github.com/gitpod-io/runbooks/blob/main/runbooks/VSCodeExtensionInstallFailuresRatioTooHigh.md23summary: Open-VSX registry is possibly down24description: Open-VSX registry or our openvsx-mirror is possibly down. Some user cannot install VSCode extensions.25dashboard_url: https://grafana.gitpod.io/d/oLzOteZ4z/vs-code-browser-overview26expr: |27sum(rate(gitpod_vscode_extension_gallery_operation_total{status="failure",operation="install"}[2m]))/sum(rate(gitpod_vscode_extension_gallery_operation_total{operation="install"}[2m])) > 0.25282930