mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
fix(grafana): fix broken panel (#8806)
This commit is contained in:
@ -46,7 +46,7 @@ services:
|
|||||||
|
|
||||||
grafana:
|
grafana:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
image: grafana/grafana:10.3.3
|
image: grafana/grafana:latest
|
||||||
depends_on:
|
depends_on:
|
||||||
- reth
|
- reth
|
||||||
- prometheus
|
- prometheus
|
||||||
|
|||||||
@ -1458,7 +1458,7 @@
|
|||||||
"uid": "${DS_PROMETHEUS}"
|
"uid": "${DS_PROMETHEUS}"
|
||||||
},
|
},
|
||||||
"editorMode": "builder",
|
"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,
|
"hide": false,
|
||||||
"instant": false,
|
"instant": false,
|
||||||
"legendFormat": "Tx",
|
"legendFormat": "Tx",
|
||||||
@ -1471,7 +1471,7 @@
|
|||||||
"uid": "${DS_PROMETHEUS}"
|
"uid": "${DS_PROMETHEUS}"
|
||||||
},
|
},
|
||||||
"editorMode": "builder",
|
"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,
|
"hide": false,
|
||||||
"legendFormat": "Rx",
|
"legendFormat": "Rx",
|
||||||
"range": true,
|
"range": true,
|
||||||
@ -1483,7 +1483,7 @@
|
|||||||
"uid": "${DS_PROMETHEUS}"
|
"uid": "${DS_PROMETHEUS}"
|
||||||
},
|
},
|
||||||
"editorMode": "code",
|
"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,
|
"hide": false,
|
||||||
"legendFormat": "Messages in Channel",
|
"legendFormat": "Messages in Channel",
|
||||||
"range": true,
|
"range": true,
|
||||||
|
|||||||
Reference in New Issue
Block a user