From 7850f1b35c2af762bbfa86accfa9b32134e6a87d Mon Sep 17 00:00:00 2001 From: yuxiaobo Date: Thu, 17 Oct 2019 19:09:54 +0800 Subject: [PATCH] new world spelling mistake Signed-off-by: yuxiaobo --- docs/storage.md | 2 +- tsdb/compact_test.go | 2 +- tsdb/docs/format/index.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/storage.md b/docs/storage.md index 4af0dd94d..45ba74d56 100644 --- a/docs/storage.md +++ b/docs/storage.md @@ -45,7 +45,7 @@ The directory structure of a Prometheus server's data directory will look someth Note that a limitation of the local storage is that it is not clustered or replicated. Thus, it is not arbitrarily scalable or durable in the face of disk or node outages and should be treated as you would any other kind of single node database. Using RAID for disk availiablity, [snapshots](https://prometheus.io/docs/prometheus/latest/querying/api/#snapshot) for backups, capacity planning, etc, is recommended for improved durability. With proper storage durability and planning storing years of data in the local storage is possible. -Alternatively, external storage may be used via the [remote read/write APIs](https://prometheus.io/docs/operating/integrations/#remote-endpoints-and-storage). Careful evaluation is required for these systems as they vary greatly in durability, performance, and efficency. +Alternatively, external storage may be used via the [remote read/write APIs](https://prometheus.io/docs/operating/integrations/#remote-endpoints-and-storage). Careful evaluation is required for these systems as they vary greatly in durability, performance, and efficiency. For further details on file format, see [TSDB format](https://github.com/prometheus/prometheus/blob/master/tsdb/docs/format/README.md). diff --git a/tsdb/compact_test.go b/tsdb/compact_test.go index 50b84d207..617d80cbe 100644 --- a/tsdb/compact_test.go +++ b/tsdb/compact_test.go @@ -163,7 +163,7 @@ func TestNoPanicFor0Tombstones(t *testing.T) { } func TestLeveledCompactor_plan(t *testing.T) { - // This mimicks our default ExponentialBlockRanges with min block size equals to 20. + // This mimics our default ExponentialBlockRanges with min block size equals to 20. compactor, err := NewLeveledCompactor(context.Background(), nil, nil, []int64{ 20, 60, diff --git a/tsdb/docs/format/index.md b/tsdb/docs/format/index.md index e5fa05edb..7d20b7d33 100644 --- a/tsdb/docs/format/index.md +++ b/tsdb/docs/format/index.md @@ -204,7 +204,7 @@ They are used to track label index sections. They are read into memory when an i ### Postings Offset Table A postings offset table stores a sequence of postings offset entries. -Every postings offset entry holds the lable name/value pair and the offset to its series list in the postings section. +Every postings offset entry holds the label name/value pair and the offset to its series list in the postings section. They are used to track postings sections. They are read into memory when an index file is loaded. ```