This is an automated email from the ASF dual-hosted git repository.
guoweijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new c21979833f5 docs(metric): fix incroect backPressure metric name
c21979833f5 is described below
commit c21979833f50c48b498ba5d6812ea52d12e9a7f7
Author: chenyuzhi <[email protected]>
AuthorDate: Tue Apr 18 22:21:46 2023 +0800
docs(metric): fix incroect backPressure metric name
---
docs/content.zh/docs/ops/monitoring/back_pressure.md | 2 +-
docs/content/docs/ops/monitoring/back_pressure.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/content.zh/docs/ops/monitoring/back_pressure.md
b/docs/content.zh/docs/ops/monitoring/back_pressure.md
index 2a26fa13483..90a5a03d6b6 100644
--- a/docs/content.zh/docs/ops/monitoring/back_pressure.md
+++ b/docs/content.zh/docs/ops/monitoring/back_pressure.md
@@ -41,7 +41,7 @@ Flink Web 界面提供了一个选项卡来监控正在运行 jobs 的反压行
## Task 性能指标
Task(SubTask)的每个并行实例都可以用三个一组的指标评价:
-- `backPressureTimeMsPerSecond`,subtask 被反压的时间
+- `backPressuredTimeMsPerSecond`,subtask 被反压的时间
- `idleTimeMsPerSecond`,subtask 等待某类处理的时间
- `busyTimeMsPerSecond`,subtask 实际工作时间
在任何时间点,这三个指标相加都约等于`1000ms`。
diff --git a/docs/content/docs/ops/monitoring/back_pressure.md
b/docs/content/docs/ops/monitoring/back_pressure.md
index f265e06e714..4f628e643df 100644
--- a/docs/content/docs/ops/monitoring/back_pressure.md
+++ b/docs/content/docs/ops/monitoring/back_pressure.md
@@ -40,7 +40,7 @@ Take a simple `Source -> Sink` job as an example. If you see
a warning for `Sour
## Task performance metrics
Every parallel instance of a task (subtask) is exposing a group of three
metrics:
-- `backPressureTimeMsPerSecond`, time that subtask spent being back pressured
+- `backPressuredTimeMsPerSecond`, time that subtask spent being back pressured
- `idleTimeMsPerSecond`, time that subtask spent waiting for something to
process
- `busyTimeMsPerSecond`, time that subtask was busy doing some actual work
At any point of time these three metrics are adding up approximately to
`1000ms`.