From fd14dabdd0e100042569abaaecc011d9e6d5f9f5 Mon Sep 17 00:00:00 2001 From: rashad Date: Thu, 9 Nov 2023 10:04:35 -0500 Subject: [PATCH] docs: add forc index status to quickstart (#1459) --- docs/src/getting-started/quickstart.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/docs/src/getting-started/quickstart.md b/docs/src/getting-started/quickstart.md index ec0916c5f..475c6ea7f 100644 --- a/docs/src/getting-started/quickstart.md +++ b/docs/src/getting-started/quickstart.md @@ -210,6 +210,32 @@ If all goes well, you should see the following: ▪▪▪▪▪ ✅ Successfully deployed indexer. ``` +And we can check the status of our newly deployed indexer using: + +```bash +forc index status +``` + +Which should show: + +```text +✅ Successfully fetched service health: + +client status: OK +database status: OK +uptime: 1m 30s + +Indexers: + +─ fuellabs + └─ hello_world + • id: 1 + • created at: 2023-11-08 15:09:49.205698 UTC (52s ago) + • status: running + • status message: + Indexed 5440 blocks +``` + > #### What is a "deployment" exactly? > > A _deployment_ within the context of Fuel's indexer is a series of steps taken to get your indexer project running in the wild.