-
Notifications
You must be signed in to change notification settings - Fork 0
/
aporia_dashboard.json
183 lines (183 loc) · 5.17 KB
/
aporia_dashboard.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
"name": "Aporia Dashboard",
"description": "Aporia predictions monitoring dashboard",
"permissions": "PUBLIC_READ_WRITE",
"pages": [
{
"name": "Aporia Dashboard",
"description": "Aporia inference monitoring dashboard",
"widgets": [
{
"visualization": {
"id": "viz.markdown"
},
"layout": {
"column": 1,
"row": 1,
"height": 3,
"width": 2
},
"title": "",
"rawConfiguration": {
"text": "\\\n\\\n\\\n\\\n\\\n Data provided by integration with \\\n\\\n ![Aporia](https://aporia-nr-public-resources.s3.amazonaws.com/aporia_light_2.svg)"
},
"linkedEntityGuids": null
},
{
"visualization": {
"id": "viz.bar"
},
"layout": {
"column": 3,
"row": 1,
"height": 3,
"width": 4
},
"title": "Most Active Models",
"rawConfiguration": {
"dataFormatters": [],
"facet": {
"showOtherSeries": false
},
"nrqlQueries": [
{
"accountId": 0,
"query": "SELECT count(model_name) FROM aporia_numeric_prediction, aporia_categorical_prediction SINCE 1 week ago FACET model_name"
}
]
},
"linkedEntityGuids": null
},
{
"visualization": {
"id": "viz.bar"
},
"layout": {
"column": 7,
"row": 1,
"height": 3,
"width": 6
},
"title": "Most Active Model Versions",
"rawConfiguration": {
"facet": {
"showOtherSeries": false
},
"nrqlQueries": [
{
"accountId": 0,
"query": "SELECT count(model_version_name) FROM aporia_numeric_prediction, aporia_categorical_prediction SINCE 1 week ago FACET model_name, model_version_name"
}
]
},
"linkedEntityGuids": null
},
{
"visualization": {
"id": "viz.line"
},
"layout": {
"column": 1,
"row": 4,
"height": 3,
"width": 6
},
"title": "Model Inferences",
"rawConfiguration": {
"facet": {
"showOtherSeries": false
},
"legend": {
"enabled": true
},
"nrqlQueries": [
{
"accountId": 0,
"query": "SELECT uniqueCount(`prediction_id`) FROM aporia_numeric_prediction, aporia_categorical_prediction FACET model_name, model_version_name SINCE 1 week ago TIMESERIES AUTO "
}
],
"yAxisLeft": {
"zero": false
}
},
"linkedEntityGuids": null
},
{
"visualization": {
"id": "viz.line"
},
"layout": {
"column": 7,
"row": 4,
"height": 3,
"width": 6
},
"title": "Average Numeric Inferences",
"rawConfiguration": {
"facet": {
"showOtherSeries": false
},
"legend": {
"enabled": true
},
"nrqlQueries": [
{
"accountId": 0,
"query": "SELECT average(value) FROM aporia_numeric_prediction SINCE 1 week ago TIMESERIES AUTO FACET model_name, model_version_name, prediction_name"
}
],
"yAxisLeft": {
"zero": false
}
},
"linkedEntityGuids": null
},
{
"visualization": {
"id": "viz.heatmap"
},
"layout": {
"column": 1,
"row": 7,
"height": 3,
"width": 6
},
"title": "Numeric Inferences Heatmaps",
"rawConfiguration": {
"nrqlQueries": [
{
"accountId": 0,
"query": "SELECT histogram(value) FROM aporia_numeric_prediction SINCE 1 week ago FACET model_name, model_version_name, prediction_name "
}
]
},
"linkedEntityGuids": null
},
{
"visualization": {
"id": "viz.pie"
},
"layout": {
"column": 7,
"row": 7,
"height": 3,
"width": 6
},
"title": "Categorical Inferences",
"rawConfiguration": {
"facet": {
"showOtherSeries": false
},
"nrqlQueries": [
{
"accountId": 0,
"query": "SELECT count(value) FROM aporia_categorical_prediction SINCE 1 week AGO FACET model_name, model_version_name, prediction_name, value "
}
]
},
"linkedEntityGuids": null
}
]
}
]
}