docs: add missing word (time) (#4797)

Signed-off-by: nilsocket <nilsocket@gmail.com>
This commit is contained in:
nilsocket 2018-10-28 13:06:09 +05:30 committed by Brian Brazil
parent 4800401eec
commit fe0f0da6b3
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ Prometheus's local time series database stores time series data in a custom form
### On-disk layout
Ingested samples are grouped into blocks of two hours. Each two-hour block consists of a directory containing one or more chunk files that contain all time series samples for that window of time, as well as a metadata file and index file (which indexes metric names and labels to series in the chunk files). The block for currently incoming samples is kept in memory and not fully persisted yet. It is secured against crashes by a write-ahead-log (WAL) that can be replayed when the Prometheus server restarts after a crash. When series are deleted via the API, deletion records are stored in separate tombstone files (instead of deleting the data immediately from the chunk files).
Ingested samples are grouped into blocks of two hours. Each two-hour block consists of a directory containing one or more chunk files that contain all time series samples for that window of time, as well as a metadata file and index file (which indexes metric names and labels to time series in the chunk files). The block for currently incoming samples is kept in memory and not fully persisted yet. It is secured against crashes by a write-ahead-log (WAL) that can be replayed when the Prometheus server restarts after a crash. When series are deleted via the API, deletion records are stored in separate tombstone files (instead of deleting the data immediately from the chunk files).
The directory structure of a Prometheus server's data directory will look something like this: