{"id":21239540,"url":"https://github.com/primexz/bitcoind-exporter","last_synced_at":"2025-09-09T19:28:46.877Z","repository":{"id":244712914,"uuid":"816039549","full_name":"Primexz/bitcoind-exporter","owner":"Primexz","description":"A Prometheus Exporter for a Bitcoin Fullnode running with bitcoind ","archived":false,"fork":false,"pushed_at":"2025-05-06T17:37:54.000Z","size":39,"stargazers_count":6,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-10T23:53:57.874Z","etag":null,"topics":["bitcoin","bitcoin-core","bitcoind","docker","go","golang","prometheus","prometheus-exporter"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Primexz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-06-16T22:23:23.000Z","updated_at":"2025-07-07T15:37:05.000Z","dependencies_parsed_at":"2024-06-16T23:31:46.905Z","dependency_job_id":"e33acc7d-f928-4ad0-841d-4d220abf8bcd","html_url":"https://github.com/Primexz/bitcoind-exporter","commit_stats":null,"previous_names":["primexz/bitcoind-exporter"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/Primexz/bitcoind-exporter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Primexz%2Fbitcoind-exporter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Primexz%2Fbitcoind-exporter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Primexz%2Fbitcoind-exporter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Primexz%2Fbitcoind-exporter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Primexz","download_url":"https://codeload.github.com/Primexz/bitcoind-exporter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Primexz%2Fbitcoind-exporter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274348870,"owners_count":25268972,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-09T02:00:10.223Z","response_time":80,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bitcoin","bitcoin-core","bitcoind","docker","go","golang","prometheus","prometheus-exporter"],"created_at":"2024-11-21T00:44:04.911Z","updated_at":"2025-09-09T19:28:46.831Z","avatar_url":"https://github.com/Primexz.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bitcoind Prometheus Exporter ₿\n\n**Prometheus metrics for a bitcoin node made simple**\n\n![Buid](https://img.shields.io/github/actions/workflow/status/primexz/bitcoind-exporter/release.yml)\n![License](https://img.shields.io/github/license/primexz/krakendca)\n\n## 🔍 About the project\n\nA Prometheus Exporter, which provides a deep insight into a Bitcoin full node.\n\n## ⚙️ Configuration\n\nThis tool is configured via environment variables. Some environment variables are required and some activate additional functionalities.\n\n| Variable | Description | Required | Default |\n| --- | --- | --- | --- |\n| `RPC_ADDRESS` | The RPC address for the Bitcoin full node, e.g. ``http://127.0.0.1:8332`` | ✅ | |\n| `RPC_USER` |The user name that was defined in the Bitcoin Node configuration | ✅ | |\n| `RPC_PASS` | The password that was set in the Bitcoin Node configuration | ✅  |  |\n| `RPC_COOKIE_FILE` | The path to the cookie file | ✅  |  |\n| `ZMQ_ADDRESS` | The address to the ZeroMQ interface of the Bitcoin Fullnode. This variable is required to determine the transcation rates. e.g. ``127.0.0.1:28333`` | ❌ |  |\n| `FETCH_INTERVAL` | The interval at which the metrics are to be recalculated. | ❌ | `10` |\n| `METRIC_PORT` | The port via which the metrics are provided. | ❌ | `3000` |\n| `LOG_LEVEL` | The log level for the service | ❌ | `info` |\n\nPlease note that either `RPC_USER` and `RPC_PASS` or `RPC_COOKIE_FILE` must be set.\n\n## 💻 Grafana Dashboard\n\nThe official Grafana dashboard can be found here: https://grafana.com/grafana/dashboards/21351\n\n## 🐳 Run with Docker\n\n###  Docker-CLI\n\n```bash\ndocker run -d --name bitcoind_exporter \\\n  -e RPC_ADDRESS=http://127.0.0.1:8332 \\\n  -e RPC_USER=mempool \\\n  -e RPC_PASS=mempool \\\n  -e ZMQ_ADDRESS=127.0.0.1:28333 \\\n  -v /path/to/cookie/.cookie:/.cookie:ro \\\n   ghcr.io/primexz/bitcoind-exporter:latest\n```\n\n### 🚀 Docker-Compose\n\n```bash\nvim docker-compose.yml\n```\n\n```yaml\nversion: \"3.8\"\nservices:\n  bitcoind_exporter:\n    image: ghcr.io/primexz/bitcoind-exporter:latest\n    environment:\n      - RPC_ADDRESS=http://127.0.0.1:8332\n      - RPC_USER=mempool\n      - RPC_PASS=mempool\n      - ZMQ_ADDRESS=127.0.0.1:28333\n    # Optional, only necessary if Cookie-Auth is to be used\n    volumes:\n      - /path/to/cookie/.cookie:/.cookie:ro\n    restart: always\n```\n\n```bash\ndocker-compose up -d\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprimexz%2Fbitcoind-exporter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprimexz%2Fbitcoind-exporter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprimexz%2Fbitcoind-exporter/lists"}