From 1214b5b43e17694a7b93c2ff04ca39183f378fc2 Mon Sep 17 00:00:00 2001 From: "Lei, HUANG" <6406592+v0y4g3r@users.noreply.github.com> Date: Mon, 17 Apr 2023 17:07:25 +0800 Subject: [PATCH] docs: fix timestamp rendering in readme (#1399) doc: fix timestamp rendering in readme --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2ceb3a5122..29ea04c5fb 100644 --- a/README.md +++ b/README.md @@ -131,16 +131,16 @@ about Kubernetes deployment, check our [docs](https://docs.greptime.com/). SELECT * FROM monitor; ``` - ```TEXT - +-------+---------------------+------+--------+ - | host | ts | cpu | memory | - +-------+---------------------+------+--------+ - | host1 | 2022-08-19 08:32:35 | 66.6 | 1024 | - | host2 | 2022-08-19 08:32:36 | 77.7 | 2048 | - | host3 | 2022-08-19 08:32:37 | 88.8 | 4096 | - +-------+---------------------+------+--------+ - 3 rows in set (0.01 sec) - ``` + ```TEXT + +-------+--------------------------+------+--------+ + | host | ts | cpu | memory | + +-------+--------------------------+------+--------+ + | host1 | 2022-08-19 16:32:35+0800 | 66.6 | 1024 | + | host2 | 2022-08-19 16:32:36+0800 | 77.7 | 2048 | + | host3 | 2022-08-19 16:32:37+0800 | 88.8 | 4096 | + +-------+--------------------------+------+--------+ + 3 rows in set (0.03 sec) + ``` You can always cleanup test database by removing `/tmp/greptimedb`.