feat: add rpc server metrics into dashboard (#4078)

This commit is contained in:
Alessandro Mazza
2023-08-10 12:32:44 +02:00
committed by GitHub
parent 4de1ff0691
commit 7f540abde9

View File

@ -5065,6 +5065,243 @@
],
"title": "Pruner duration, per part",
"type": "timeseries"
},
{
"collapsed": false,
"gridPos": {
"h": 1,
"w": 24,
"x": 0,
"y": 204
},
"id": 97,
"panels": [],
"title": "RPC server",
"type": "row"
},
{
"title": "Active Requests",
"description": "The number of active requests.",
"type": "graph",
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"targets": [
{
"expr": "reth_rpc_server_requests_started - reth_rpc_server_requests_finished",
"format": "time_series",
"legendFormat": "Active Requests",
"refId": "A"
}
],
"gridPos": {
"h": 8,
"w": 12,
"x": 0,
"y": 205
}
},
{
"title": "Active Websocket Connections",
"description": "The number of active websocket connections.",
"type": "graph",
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"targets": [
{
"expr": "reth_rpc_server_ws_session_opened - reth_rpc_server_ws_session_closed",
"format": "time_series",
"legendFormat": "Active Websocket Connections",
"refId": "A"
}
],
"gridPos": {
"h": 8,
"w": 12,
"x": 12,
"y": 205
}
},
{
"title": "Request Latency time",
"type": "heatmap",
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"description": "",
"fieldConfig": {
"defaults": {
"custom": {
"hideFrom": {
"legend": false,
"tooltip": false,
"viz": false
},
"scaleDistribution": {
"type": "linear"
}
}
},
"overrides": []
},
"gridPos": {
"h": 8,
"w": 12,
"x": 0,
"y": 213
},
"id": 42,
"maxDataPoints": 25,
"options": {
"calculate": false,
"cellGap": 1,
"cellValues": {
"unit": "s"
},
"color": {
"exponent": 0.2,
"fill": "dark-orange",
"min": 0,
"mode": "opacity",
"reverse": false,
"scale": "exponential",
"scheme": "Oranges",
"steps": 128
},
"exemplars": {
"color": "rgba(255,0,255,0.7)"
},
"filterValues": {
"le": 1e-9
},
"legend": {
"show": true
},
"rowsFrame": {
"layout": "auto",
"value": "Latency time"
},
"tooltip": {
"show": true,
"yHistogram": false
},
"yAxis": {
"axisLabel": "Quantile",
"axisPlacement": "left",
"reverse": false,
"unit": "percentunit"
}
},
"pluginVersion": "10.0.2",
"targets": [
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"editorMode": "code",
"exemplar": false,
"expr": "sum(increase(reth_rpc_server_request_latency{instance=~\"$instance\"}[$__interval])) by (quantile)",
"format": "time_series",
"instant": false,
"legendFormat": "{{quantile}}",
"range": true,
"refId": "A"
}
]
},
{
"title": "Call Latency time",
"type": "heatmap",
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"description": "",
"fieldConfig": {
"defaults": {
"custom": {
"hideFrom": {
"legend": false,
"tooltip": false,
"viz": false
},
"scaleDistribution": {
"type": "linear"
}
}
},
"overrides": []
},
"gridPos": {
"h": 8,
"w": 12,
"x": 12,
"y": 213
},
"id": 42,
"maxDataPoints": 25,
"options": {
"calculate": false,
"cellGap": 1,
"cellValues": {
"unit": "s"
},
"color": {
"exponent": 0.2,
"fill": "dark-orange",
"min": 0,
"mode": "opacity",
"reverse": false,
"scale": "exponential",
"scheme": "Oranges",
"steps": 128
},
"exemplars": {
"color": "rgba(255,0,255,0.7)"
},
"filterValues": {
"le": 1e-9
},
"legend": {
"show": true
},
"rowsFrame": {
"layout": "auto",
"value": "Latency time"
},
"tooltip": {
"show": true,
"yHistogram": false
},
"yAxis": {
"axisLabel": "Quantile",
"axisPlacement": "left",
"reverse": false,
"unit": "percentunit"
}
},
"pluginVersion": "10.0.2",
"targets": [
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"editorMode": "code",
"exemplar": false,
"expr": "sum(increase(reth_rpc_server_call_latency{instance=~\"$instance\"}[$__interval])) by (quantile)",
"format": "time_series",
"instant": false,
"legendFormat": "{{quantile}}",
"range": true,
"refId": "A"
}
]
}
],
"refresh": "30s",