{"id":16075548,"url":"https://github.com/mnrgreg/rocketpool-stake-value-reporting","last_synced_at":"2025-08-08T05:45:50.716Z","repository":{"id":235737002,"uuid":"578405081","full_name":"MnrGreg/rocketpool-stake-value-reporting","owner":"MnrGreg","description":"RocketPool Node Operator - Total Dollar value dashboard","archived":false,"fork":false,"pushed_at":"2023-01-17T20:51:18.000Z","size":158,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-10T21:36:38.084Z","etag":null,"topics":["dashboard","grafana","rocketpool"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MnrGreg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2022-12-15T01:15:25.000Z","updated_at":"2022-12-15T01:44:55.000Z","dependencies_parsed_at":"2024-04-24T13:23:39.100Z","dependency_job_id":"45f4d2a1-c349-4d0d-9d60-b04c3c21cdb6","html_url":"https://github.com/MnrGreg/rocketpool-stake-value-reporting","commit_stats":null,"previous_names":["mnrgreg/rocketpool-stake-value-reporting"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MnrGreg%2Frocketpool-stake-value-reporting","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MnrGreg%2Frocketpool-stake-value-reporting/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MnrGreg%2Frocketpool-stake-value-reporting/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MnrGreg%2Frocketpool-stake-value-reporting/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MnrGreg","download_url":"https://codeload.github.com/MnrGreg/rocketpool-stake-value-reporting/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247325647,"owners_count":20920713,"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","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":["dashboard","grafana","rocketpool"],"created_at":"2024-10-09T09:06:25.175Z","updated_at":"2025-04-05T10:42:12.509Z","avatar_url":"https://github.com/MnrGreg.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"## RocketPool Node Operator overrides to graph total stake dollar value\nGraph the total dollar value of both rewards and stake over time.\n\n---\nDashboard:\n\n![Grafana Dashboard](dashboard.png)\n\n1. Import `grafana-dashboard.json` into Grafana.\n\n2. Apply changes:\n\n```shell\ncat \u003c\u003cEOF \u003e ~/.rocketpool/override/json_exporter.yml\nmetrics:\n  - name: cryptocurrency\n    type: object\n    help: General statistics of the top cryptocurrencies\n    path: '{.coin}'\n    labels:\n      symbol: '{.symbol}'\n    values:\n      price: '{.price}'\nEOF\n```\n\n```shell\ncat \u003c\u003cEOF \u003e ~/.rocketpool/override/exporter.yml\n# Enter your own customizations for the node exporter container here. These changes will persist after upgrades, so you only need to do them once.\n# \n# See https://docs.docker.com/compose/extends/#adding-and-overriding-configuration\n# for more information on overriding specific parameters of docker-compose files.\n\nversion: \"3.7\"\nservices:\n  node-exporter:\n    x-rp-comment: Add your customizations below this line\n  json_exporter:\n    image: quay.io/prometheuscommunity/json-exporter:v0.4.0\n    container_name: json_exporter\n    restart: unless-stopped\n    volumes:\n      - ~/.rocketpool/override/json_exporter.yml:/config.yml:ro\n    networks:\n      - net\nEOF\n```\n\n```shell\ncat \u003c\u003cEOF \u003e\u003e ~/.rocketpool/prometheus.tmpl\n\n  - job_name: json_exporter\n    scrape_interval: 1m\n    scrape_timeout: 15s\n    honor_labels: true\n    metrics_path: /probe\n    static_configs:\n      - targets:\n          - https://api.coinstats.app/public/v1/coins/ethereum?currency=USD\n          - https://api.coinstats.app/public/v1/coins/rocket-pool?currency=USD\n    relabel_configs:\n      - source_labels: [__address__]\n        target_label: __param_target\n      - source_labels: [__address__]\n        regex: ^http.+currency=([A-Z]{3})\n        action: replace\n        target_label: currency\n        replacement: ${1}\n      - source_labels: [__param_target]\n        target_label: instance\n      - target_label: __address__\n        replacement: json_exporter:7979\nEOF\n```\n\n3. Run `rocketpool service start`\n\n\n\u003c!-- \ncat \u003c\u003cEOF \u003e ~/.rocketpool/override/prometheus.yml\n# Enter your own customizations for the Prometheus container here. These changes will persist after upgrades, so you only need to do them once.\n# \n# See https://docs.docker.com/compose/extends/#adding-and-overriding-configuration\n# for more information on overriding specific parameters of docker-compose files.\n\nversion: \"3.7\"\nservices:\n  prometheus:\n    x-rp-comment: Add your customizations below this line\n    command:\n    - --storage.tsdb.retention.time=60d\n    - --web.listen-address=:9091\n    - --config.file=/etc/prometheus/prometheus.yml\n--\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmnrgreg%2Frocketpool-stake-value-reporting","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmnrgreg%2Frocketpool-stake-value-reporting","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmnrgreg%2Frocketpool-stake-value-reporting/lists"}