Skip to content

Commit

Permalink
feat: add gas averages over time into grafana (#12237)
Browse files Browse the repository at this point in the history
  • Loading branch information
edisontim authored Nov 6, 2024
1 parent 8ec3af6 commit 4bac153
Showing 1 changed file with 96 additions and 0 deletions.
96 changes: 96 additions & 0 deletions etc/grafana/dashboards/overview.json
Original file line number Diff line number Diff line change
Expand Up @@ -3017,6 +3017,102 @@
"legendFormat": "Gas/s",
"range": true,
"refId": "A"
},
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"disableTextWrap": false,
"editorMode": "builder",
"expr": "avg_over_time(reth_sync_execution_gas_per_second{instance=~\"$instance\"}[1m])",
"fullMetaSearch": false,
"hide": false,
"includeNullMetadata": true,
"legendFormat": "Avg Gas/s (1m)",
"range": true,
"refId": "B",
"useBackend": false
},
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"disableTextWrap": false,
"editorMode": "builder",
"expr": "avg_over_time(reth_sync_execution_gas_per_second{instance=~\"$instance\"}[5m])",
"fullMetaSearch": false,
"hide": false,
"includeNullMetadata": true,
"legendFormat": "Avg Gas/s (5m)",
"range": true,
"refId": "C",
"useBackend": false
},
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"disableTextWrap": false,
"editorMode": "builder",
"expr": "avg_over_time(reth_sync_execution_gas_per_second{instance=~\"$instance\"}[10m])",
"fullMetaSearch": false,
"hide": false,
"includeNullMetadata": true,
"legendFormat": "Avg Gas/s (10m)",
"range": true,
"refId": "D",
"useBackend": false
},
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"disableTextWrap": false,
"editorMode": "builder",
"expr": "avg_over_time(reth_sync_execution_gas_per_second{instance=~\"$instance\"}[30m])",
"fullMetaSearch": false,
"hide": false,
"includeNullMetadata": true,
"legendFormat": "Avg Gas/s (30m)",
"range": true,
"refId": "E",
"useBackend": false
},
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"disableTextWrap": false,
"editorMode": "builder",
"expr": "avg_over_time(reth_sync_execution_gas_per_second{instance=~\"$instance\"}[1h])",
"fullMetaSearch": false,
"hide": false,
"includeNullMetadata": true,
"legendFormat": "Avg Gas/s (1h)",
"range": true,
"refId": "F",
"useBackend": false
},
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"disableTextWrap": false,
"editorMode": "builder",
"expr": "avg_over_time(reth_sync_execution_gas_per_second{instance=~\"$instance\"}[24h])",
"fullMetaSearch": false,
"hide": false,
"includeNullMetadata": true,
"legendFormat": "Avg Gas/s (24h)",
"range": true,
"refId": "G",
"useBackend": false
}
],
"title": "Execution throughput",
Expand Down

0 comments on commit 4bac153

Please sign in to comment.