From 5de7d15879b47d60bda8ab266839235fadb59f97 Mon Sep 17 00:00:00 2001 From: Ganesh Vernekar <15064823+codesome@users.noreply.github.com> Date: Mon, 19 Oct 2020 14:27:19 +0530 Subject: [PATCH] Consistent naming and better names for fields in TSDB format docs (#8077) Signed-off-by: Ganesh Vernekar --- tsdb/docs/format/index.md | 4 ++-- tsdb/docs/format/tombstones.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tsdb/docs/format/index.md b/tsdb/docs/format/index.md index 1d87970dd..854316cb4 100644 --- a/tsdb/docs/format/index.md +++ b/tsdb/docs/format/index.md @@ -24,9 +24,9 @@ It is terminated by a table of contents which serves as an entry point into the │ ├──────────────────────────────────────────────┤ │ │ │ Postings N │ │ │ ├──────────────────────────────────────────────┤ │ -│ │ Label Index Table │ │ +│ │ Label Offset Table │ │ │ ├──────────────────────────────────────────────┤ │ -│ │ Postings Table │ │ +│ │ Postings Offset Table │ │ │ ├──────────────────────────────────────────────┤ │ │ │ TOC │ │ │ └──────────────────────────────────────────────┘ │ diff --git a/tsdb/docs/format/tombstones.md b/tsdb/docs/format/tombstones.md index 058f5f1e2..2dc62bb4c 100644 --- a/tsdb/docs/format/tombstones.md +++ b/tsdb/docs/format/tombstones.md @@ -25,7 +25,7 @@ The stones section is 0 padded to a multiple of 4 for fast scans. # Tombstone ``` -┌────────────────┬─────────────────┬────────────────┐ -│ref │ mint │ maxt │ -└────────────────┴─────────────────┴────────────────┘ +┌───────────────────────┬─────────────────┬────────────────┐ +│series ref │ mint │ maxt │ +└───────────────────────┴─────────────────┴────────────────┘ ``` -- GitLab