Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Correct the spelling of "gauge" #9543

Merged
merged 1 commit into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/flink-writes.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ They should have the following key-value tags.

Metric name | Metric type | Description |
| ------------------------- |------------|-----------------------------------------------------------------------------------------------------|
| lastFlushDurationMs | Gague | The duration (in milli) that writer subtasks take to flush and upload the files during checkpoint. |
| lastFlushDurationMs | Gauge | The duration (in milli) that writer subtasks take to flush and upload the files during checkpoint. |
| flushedDataFiles | Counter | Number of data files flushed and uploaded. |
| flushedDeleteFiles | Counter | Number of delete files flushed and uploaded. |
| flushedReferencedDataFiles| Counter | Number of data files referenced by the flushed delete files. |
Expand All @@ -227,15 +227,15 @@ They should have the following key-value tags.

Metric name | Metric type | Description |
|---------------------------------|--------|----------------------------------------------------------------------------|
| lastCheckpointDurationMs | Gague | The duration (in milli) that the committer operator checkpoints its state. |
| lastCommitDurationMs | Gague | The duration (in milli) that the Iceberg table commit takes. |
| lastCheckpointDurationMs | Gauge | The duration (in milli) that the committer operator checkpoints its state. |
| lastCommitDurationMs | Gauge | The duration (in milli) that the Iceberg table commit takes. |
| committedDataFilesCount | Counter | Number of data files committed. |
| committedDataFilesRecordCount | Counter | Number of records contained in the committed data files. |
| committedDataFilesByteCount | Counter | Number of bytes contained in the committed data files. |
| committedDeleteFilesCount | Counter | Number of delete files committed. |
| committedDeleteFilesRecordCount | Counter | Number of records contained in the committed delete files. |
| committedDeleteFilesByteCount | Counter | Number of bytes contained in the committed delete files. |
| elapsedSecondsSinceLastSuccessfulCommit| Gague | Elapsed time (in seconds) since last successful Iceberg commit. |
| elapsedSecondsSinceLastSuccessfulCommit| Gauge | Elapsed time (in seconds) since last successful Iceberg commit. |

`elapsedSecondsSinceLastSuccessfulCommit` is an ideal alerting metric
to detect failed or missing Iceberg commits.
Expand Down
8 changes: 4 additions & 4 deletions site/docs/docs/nightly/docs/flink-writes.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ They should have the following key-value tags.

Metric name | Metric type | Description |
| ------------------------- |------------|-----------------------------------------------------------------------------------------------------|
| lastFlushDurationMs | Gague | The duration (in milli) that writer subtasks take to flush and upload the files during checkpoint. |
| lastFlushDurationMs | Gauge | The duration (in milli) that writer subtasks take to flush and upload the files during checkpoint. |
| flushedDataFiles | Counter | Number of data files flushed and uploaded. |
| flushedDeleteFiles | Counter | Number of delete files flushed and uploaded. |
| flushedReferencedDataFiles| Counter | Number of data files referenced by the flushed delete files. |
Expand All @@ -219,15 +219,15 @@ They should have the following key-value tags.

Metric name | Metric type | Description |
|---------------------------------|--------|----------------------------------------------------------------------------|
| lastCheckpointDurationMs | Gague | The duration (in milli) that the committer operator checkpoints its state. |
| lastCommitDurationMs | Gague | The duration (in milli) that the Iceberg table commit takes. |
| lastCheckpointDurationMs | Gauge | The duration (in milli) that the committer operator checkpoints its state. |
| lastCommitDurationMs | Gauge | The duration (in milli) that the Iceberg table commit takes. |
| committedDataFilesCount | Counter | Number of data files committed. |
| committedDataFilesRecordCount | Counter | Number of records contained in the committed data files. |
| committedDataFilesByteCount | Counter | Number of bytes contained in the committed data files. |
| committedDeleteFilesCount | Counter | Number of delete files committed. |
| committedDeleteFilesRecordCount | Counter | Number of records contained in the committed delete files. |
| committedDeleteFilesByteCount | Counter | Number of bytes contained in the committed delete files. |
| elapsedSecondsSinceLastSuccessfulCommit| Gague | Elapsed time (in seconds) since last successful Iceberg commit. |
| elapsedSecondsSinceLastSuccessfulCommit| Gauge | Elapsed time (in seconds) since last successful Iceberg commit. |

`elapsedSecondsSinceLastSuccessfulCommit` is an ideal alerting metric
to detect failed or missing Iceberg commits.
Expand Down