Skip to main content

Installation

This documentation contains the information needed to re-create Hedera Stats using the Hedera mirror node and other data sources.

Getting Started

Prerequisites

Installation

Clone the Hedera Stats repository:

git clone https://github.com/hgraph-io/hedera-stats.git
cd hedera-stats

Install Prometheus CLI (promtool):

curl -L -O https://github.com/prometheus/prometheus/releases/download/v3.1.0/prometheus-3.1.0.linux-amd64.tar.gz
tar -xvf prometheus-3.1.0.linux-amd64.tar.gz
# one way to add the tool to the PATH
cp prometheus-3.1.0.linux-amd64/promtool /usr/bin

Initial Configuration

Set up your database:

  • Execute src/up.sql to create necessary database schema and tables.
  • Load initial data using SQL scripts from the src/jobs directory.

Configure environment variables (example .env):

DATABASE_URL="postgresql://user:password@localhost:5432/hedera_stats"
HGRAPH_API_KEY="your_api_key"

Schedule incremental updates:

crontab -e
1 * * * * cd /path/to/hedera-stats/src/time-to-consensus && bash ./run.sh >> ./.raw/cron.log 2>&1

Troubleshooting & FAQs

Missing data or discrepancies?

  • Verify you're querying the correct API endpoint:
    • Staging environment (hgraph.dev) may have incomplete data.
    • Production endpoint (hgraph.io) requires an API key.

Improve query performance:

  • Use broader granularity (day/month) for extensive periods.
  • Limit result size with limit and order_by.
  • Cache frequently accessed data.