Skip to content

Commit

Permalink
fix(grafana): fix broken panel (#8806)
Browse files Browse the repository at this point in the history
  • Loading branch information
emhane committed Jun 13, 2024
1 parent 76c8f48 commit ff33c28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion etc/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ services:

grafana:
restart: unless-stopped
image: grafana/grafana:10.3.3
image: grafana/grafana:latest
depends_on:
- reth
- prometheus
Expand Down
6 changes: 3 additions & 3 deletions etc/grafana/dashboards/reth-mempool.json
Original file line number Diff line number Diff line change
Expand Up @@ -1458,7 +1458,7 @@
"uid": "${DS_PROMETHEUS}"
},
"editorMode": "builder",
"expr": "rate(reth_network_pool_transactions_messages_sent_total{instance=~\"$instance\"}[$__rate_interval])",
"expr": "rate(reth_network_pool_transactions_messages_sent{instance=~\"$instance\"}[$__rate_interval])",
"hide": false,
"instant": false,
"legendFormat": "Tx",
Expand All @@ -1471,7 +1471,7 @@
"uid": "${DS_PROMETHEUS}"
},
"editorMode": "builder",
"expr": "rate(reth_network_pool_transactions_messages_received_total{instance=~\"$instance\"}[$__rate_interval])",
"expr": "rate(reth_network_pool_transactions_messages_received{instance=~\"$instance\"}[$__rate_interval])",
"hide": false,
"legendFormat": "Rx",
"range": true,
Expand All @@ -1483,7 +1483,7 @@
"uid": "${DS_PROMETHEUS}"
},
"editorMode": "code",
"expr": "reth_network_pool_transactions_messages_sent_total{instance=~\"$instance\"} - reth_network_pool_transactions_messages_received_total{instance=~\"$instance\"}",
"expr": "reth_network_pool_transactions_messages_sent{instance=~\"$instance\"} - reth_network_pool_transactions_messages_received{instance=~\"$instance\"}",
"hide": false,
"legendFormat": "Messages in Channel",
"range": true,
Expand Down

0 comments on commit ff33c28

Please sign in to comment.