From ebdd8c619cd63a050fd0e610ca7dfc86587fef25 Mon Sep 17 00:00:00 2001 From: Wilson Wu Date: Thu, 5 Oct 2023 09:34:36 +0800 Subject: [PATCH] Sync #13965 into Chinese (#13969) --- content/zh/docs/ops/integrations/grafana/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/zh/docs/ops/integrations/grafana/index.md b/content/zh/docs/ops/integrations/grafana/index.md index 4c7ed84de7..93b3483b0c 100644 --- a/content/zh/docs/ops/integrations/grafana/index.md +++ b/content/zh/docs/ops/integrations/grafana/index.md @@ -19,6 +19,7 @@ test: no * [Workload Dashboard](https://grafana.com/grafana/dashboards/7630) 为负载提供详细的分类指标。 * [Performance Dashboard](https://grafana.com/grafana/dashboards/11829) 监控网格资源使用情况。 * [Control Plane Dashboard](https://grafana.com/grafana/dashboards/7645) 监控控制面的健康状况及性能指标. +* [WASM Extension Dashboard](https://grafana.com/grafana/dashboards/13277) 提供了网格范围的 WebAssembly 扩展运行时和加载状态的概述。 可以通过多种方法来配置 Grafana 来使用这些仪表板: @@ -52,7 +53,7 @@ $ GRAFANA_DATASOURCE="Prometheus" $ # The version of Istio to deploy $ VERSION={{< istio_full_version >}} $ # Import all Istio dashboards -$ for DASHBOARD in 7639 11829 7636 7630 7645; do +$ for DASHBOARD in 7639 11829 7636 7630 7645 13277; do $ REVISION="$(curl -s https://grafana.com/api/dashboards/${DASHBOARD}/revisions -s | jq ".items[] | select(.description | contains(\"${VERSION}$\")) | .revision")" $ curl -s https://grafana.com/api/dashboards/${DASHBOARD}/revisions/${REVISION}/download > /tmp/dashboard.json $ echo "Importing $(cat /tmp/dashboard.json | jq -r '.title') (revision ${REVISION}, id ${DASHBOARD})..."