🚗 Autoscout is now available, providing a simple one-click explorer deployment with Blockscout’s optimized hosting infrastructure. Use it for early testing, modifications, and launching a full production-grade explorer. Get Started Now and have your explorer up-and-running in minutes.
Messages during indexing
- n% Blocks Indexed - We’re indexing this chain right now. Some of the counts may be inaccurate. This means blocks are still being collected and processed by BlockScout. The message should disappear once the genesis block is indexed.
- Blocks With Internal Transactions Indexed - We’re indexing this chain right now. Some of the counts may be inaccurate. This means BlockScout has collected all blocks but is still indexing internal transactions using the archive node tracing api. This message will disappear when
INDEXER_DISABLE_INTERNAL_TRANSACTIONS_FETCHER=true
is provided.
Monitoring indexing processes
Monitoring blocks/transactions indexing
- Block count should be close to the number of the blocks in the chain. Query using
SELECT COUNT(1) FROM blocks;
~= num of blocks in the chain. - The number of missing blocks in the chain can be monitored with this query:
Monitoring internal transactions indexing
Internal transaction fetching can be monitored with this query:SELECT COUNT(1) FROM pending_block_operations;
It should move towards zero during internal transaction processing.