-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsim.dashboard.py
117 lines (99 loc) · 2.77 KB
/
sim.dashboard.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import os
import importlib.util
from grafanalib.core import (
Dashboard, TimeSeries, RowPanel, Target
)
def import_from_path(path):
spec = importlib.util.spec_from_file_location("module.name", path)
module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(module)
return module
# include the shared am grafana funcs
am_grafana = import_from_path(os.getcwd()+"/am_grafana.py")
interval = '5s'
panels = []
# add sim panels
panels.extend([
RowPanel(title="Simulator", gridPos=am_grafana.next_row_pos()),
TimeSeries(
title="Topics",
gridPos=am_grafana.next_grid_pos(),
dataSource='prometheus',
interval=interval,
targets=[
Target(
legendFormat="Avg peers per topic",
expr='sim_peers_per_topic',
),
Target(
legendFormat="Topics",
expr='sim_topics',
),
]),
TimeSeries(
title="Messages",
gridPos=am_grafana.next_grid_pos(),
dataSource='prometheus',
interval=interval,
targets=[
Target(
legendFormat="Delivered msgs",
expr='sim_msgs_recv',
),
Target(
legendFormat="Missed msgs",
expr='sim_msgs_miss',
),
]),
TimeSeries(
title="Peers",
gridPos=am_grafana.next_grid_pos(),
dataSource='prometheus',
interval=interval,
targets=[
Target(
legendFormat="Friendships",
expr='sim_friends',
),
Target(
legendFormat="Peers",
expr='sim_peers',
),
Target(
legendFormat="Peers with topics",
expr='sim_peer_with_topics',
),
]),
TimeSeries(
title="Connections",
gridPos=am_grafana.next_grid_pos(),
dataSource='prometheus',
interval=interval,
targets=[
Target(
legendFormat="Connections",
expr='sim_connections',
),
Target(
legendFormat="Streams",
expr='sim_streams',
),
],
),
])
# loop over env var IDS, divided by comma
for pid in os.environ['GRAFANA_IDS'].split(','):
# replace - with _
pid = pid.replace('-', '_')
# append to existing panels
panels.extend(am_grafana.mach_panels(pid))
dashboard = Dashboard(
title="libp2p-pubsub simulator",
description="libp2p-pubsub simulator and it's state machines (" + os.environ['GRAFANA_IDS'] + ")",
refresh='5s',
# tags=[
# 'example'
# ],
timezone="browser",
panels=panels,
).auto_panel_ids()