docs/victoriametrics/changelog/CHANGELOG.md: add a description for the change in the commit dd2d6807e4

This commit is contained in:
Aliaksandr Valialkin
2026-04-02 13:18:38 +02:00
parent dd2d6807e4
commit 577b161343
2 changed files with 5 additions and 3 deletions

View File

@@ -26,6 +26,8 @@ See also [LTS releases](https://docs.victoriametrics.com/victoriametrics/lts-rel
## tip
* FEATURE: introduce `vm_filestream_fsync_duration_seconds_total` and `vm_filestream_fsync_calls_total` metrics, which can be used for detecting slow storage if it cannot keep up with the current data ingestion rate. See [#10432](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/10432).
## [v1.139.0](https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.139.0)
Released at 2026-03-27
@@ -1442,4 +1444,4 @@ See changes [here](https://docs.victoriametrics.com/victoriametrics/changelog/ch
## Previous releases
See [releases page](https://github.com/VictoriaMetrics/VictoriaMetrics/releases).
See [releases page](https://github.com/VictoriaMetrics/VictoriaMetrics/releases).

View File

@@ -286,8 +286,8 @@ var (
writtenBytesReal = metrics.NewCounter(`vm_filestream_real_written_bytes_total`)
writersCount = metrics.NewCounter(`vm_filestream_writers`)
fsyncDuration = metrics.NewFloatCounter(`vm_filestream_fsync_duration_seconds_total`)
fsyncCalls = metrics.NewCounter(`vm_filestream_fsync_calls_total`)
fsyncDuration = metrics.NewFloatCounter(`vm_filestream_fsync_duration_seconds_total`)
fsyncCalls = metrics.NewCounter(`vm_filestream_fsync_calls_total`)
)
// Write writes p to the underlying file.