Skip to content

Commit

Permalink
Merge branch 'unstable' into cayman/node-noise-crypto
Browse files Browse the repository at this point in the history
  • Loading branch information
wemeetagain committed Sep 1, 2023
2 parents 72d2b45 + 3b5941a commit 0709c3c
Show file tree
Hide file tree
Showing 38 changed files with 747 additions and 231 deletions.
121 changes: 111 additions & 10 deletions dashboards/lodestar_debug_gossipsub.json
Original file line number Diff line number Diff line change
Expand Up @@ -1717,22 +1717,26 @@
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"editorMode": "code",
"exemplar": false,
"expr": "sum(\n rate(gossipsub_mesh_peer_inclusion_events_total[$rate_interval])\n) by (topic)",
"interval": "",
"legendFormat": "+ {{topic}}",
"range": true,
"refId": "A"
},
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"editorMode": "code",
"exemplar": false,
"expr": "- sum(\n rate(gossipsub_peer_churn_events_total [$rate_interval])\n) by (topic)",
"hide": false,
"interval": "",
"legendFormat": "- {{topic}}",
"range": true,
"refId": "B"
}
],
Expand Down Expand Up @@ -1809,23 +1813,120 @@
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"exemplar": false,
"expr": "sum(\n rate(gossipsub_mesh_peer_inclusion_events_total[$rate_interval])\n) by (reason)",
"editorMode": "code",
"expr": "sum(rate(gossipsub_mesh_peer_inclusion_events_fanout_total[$rate_interval]))",
"hide": false,
"interval": "",
"legendFormat": "+ {{reason}}",
"refId": "B"
"legendFormat": "+ fanout",
"range": true,
"refId": "C"
},
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"exemplar": false,
"expr": "- sum(\n rate(gossipsub_peer_churn_events_total [$rate_interval])\n) by (reason)",
"interval": "",
"legendFormat": "- {{reason}}",
"refId": "A"
"editorMode": "code",
"expr": "sum(rate(gossipsub_mesh_peer_inclusion_events_random_total[$rate_interval]))",
"hide": false,
"legendFormat": "+ random",
"range": true,
"refId": "D"
},
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"editorMode": "code",
"expr": "sum(rate(gossipsub_mesh_peer_inclusion_events_subscribed_total[$rate_interval]))",
"hide": false,
"legendFormat": "+ subscribed",
"range": true,
"refId": "E"
},
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"editorMode": "code",
"expr": "sum(rate(gossipsub_mesh_peer_inclusion_events_outbound_total[$rate_interval]))",
"hide": false,
"legendFormat": "+ outbound",
"range": true,
"refId": "F"
},
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"editorMode": "code",
"expr": "sum(rate(gossipsub_mesh_peer_inclusion_events_not_enough_total[$rate_interval]))",
"hide": false,
"legendFormat": "+ not_enough",
"range": true,
"refId": "G"
},
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"editorMode": "code",
"expr": "sum(rate(gossipsub_mesh_peer_inclusion_events_opportunistic_total[$rate_interval]))",
"hide": false,
"legendFormat": "+ opportunistic",
"range": true,
"refId": "H"
},
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"editorMode": "code",
"expr": "- sum(rate(gossipsub_peer_churn_events_disconnected_total[$rate_interval]))",
"hide": false,
"legendFormat": "- disconnected",
"range": true,
"refId": "I"
},
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"editorMode": "code",
"expr": "- sum(rate(gossipsub_peer_churn_events_bad_score_total[$rate_interval]))",
"hide": false,
"legendFormat": "- bad_score",
"range": true,
"refId": "J"
},
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"editorMode": "code",
"expr": "- sum(rate(gossipsub_peer_churn_events_prune_total[$rate_interval]))",
"hide": false,
"legendFormat": "- prune",
"range": true,
"refId": "K"
},
{
"datasource": {
"type": "prometheus",
"uid": "${DS_PROMETHEUS}"
},
"editorMode": "code",
"expr": "- sum(rate(gossipsub_peer_churn_events_excess_total[$rate_interval]))",
"hide": false,
"legendFormat": "- excess",
"range": true,
"refId": "L"
}
],
"title": "Mesh inclusion (+) / churn (-) events - sum by reason",
Expand Down
Loading

0 comments on commit 0709c3c

Please sign in to comment.