-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwidgets.json
124 lines (124 loc) · 2.13 KB
/
widgets.json
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
118
119
120
121
122
123
124
{
"layouts": [
{
"layout_name": "default_eventdb_dashboard",
"display_name": "Standard EVENTDB Dashboard",
"section_name": "EVENTDB_SUMMARY",
"widgetLayoutInfo": [
{
"widget_name": "Total Parsed Files",
"description": "Total Files Parsed by Eventdb",
"widget_type": "NUMBER",
"is_visible": true,
"metrics": [
{
"name": "files",
"metric_path": "metrics/eventdb/totalfiles",
"service_name": "EVENTDB",
"component_name": "EVENTDB_SERVER"
}
],
"values": [
{
"name": "The Number of Files",
"value": "${files}"
}
]
},
{
"widget_name": "Total Tables",
"description": "Total Tables Stored in Eventdb",
"widget_type": "NUMBER",
"is_visible": true,
"metrics": [
{
"name": "tables",
"metric_path": "metrics/eventdb/totaltables",
"service_name": "EVENTDB",
"component_name": "EVENTDB_SERVER"
}
],
"values": [
{
"name": "The Number of Tables",
"value": "${tables}"
}
]
},
{
"widget_name": "Total Events",
"description": "Total Events Stored in Eventdb",
"widget_type": "NUMBER",
"is_visible": true,
"metrics": [
{
"name": "events",
"metric_path": "metrics/eventdb/totalevents",
"service_name": "EVENTDB",
"component_name": "EVENTDB_SERVER"
}
],
"values": [
{
"name": "The Number of Events",
"value": "${events/1000000.0}"
}
],
"properties": {
"display_unit": "M"
}
},
{
"widget_name": "Write Speed",
"description": "Write Speed",
"widget_type": "GRAPH",
"is_visible": true,
"metrics": [
{
"name": "write",
"metric_path": "metrics/eventdb/writespeed",
"service_name": "EVENTDB",
"component_name": "EVENTDB_SERVER"
}
],
"values": [
{
"name": "Write Speed",
"value": "${write}"
}
],
"properties": {
"graph_type": "LINE",
"time_range": "1",
"display_unit": "events/s"
}
},
{
"widget_name": "Read Latency",
"description": "Read Latency",
"widget_type": "GRAPH",
"is_visible": true,
"metrics": [
{
"name": "read",
"metric_path": "metrics/eventdb/readlatency",
"service_name": "EVENTDB",
"component_name": "EVENTDB_SERVER"
}
],
"values": [
{
"name": "Read Latency",
"value": "${read}"
}
],
"properties": {
"graph_type": "LINE",
"display_unit": "ms",
"time_range": "1"
}
}
]
}
]
}