-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexample_dashboard.json
More file actions
112 lines (110 loc) · 2.68 KB
/
example_dashboard.json
File metadata and controls
112 lines (110 loc) · 2.68 KB
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
{
"dashboard": {
"title": "Github Traffic Stats",
"icon":"bar-chart",
"visibility": "owner",
"editable": "editable_by_owner",
"metadata": {
"version": 1
},
"widgets": [
{
"visualization": "facet_table",
"data": [
{
"nrql": "SELECT sum(`uniques`), sum(`count`) FROM Clone FACET repo_name since 14 days ago"
}
],
"presentation": {
"title": "Clones",
"notes": null,
"drilldown_dashboard_id": null
}
},
{
"visualization": "facet_table",
"data": [
{
"nrql": "SELECT sum(`uniques`), sum(`count`) FROM Referral FACET repo_name since 14 days ago"
}
],
"presentation": {
"title": "Referrals",
"notes": null,
"drilldown_dashboard_id": null
}
},
{
"visualization": "facet_table",
"data": [
{
"nrql": "SELECT sum(`uniques`), sum(`count`) FROM View FACET repo_name since 14 days ago"
}
],
"presentation": {
"title": "Views",
"notes": null,
"drilldown_dashboard_id": null
}
},
{
"visualization": "facet_pie_chart",
"data": [
{
"nrql": "SELECT sum(count) FROM Referral FACET referrer LIMIT 10 SINCE 604800 seconds ago EXTRAPOLATE"
}
],
"presentation": {
"title": "Unique Referrers",
"notes": null,
"drilldown_dashboard_id": null
}
},
{
"visualization": "faceted_area_chart",
"data": [
{
"nrql": "SELECT sum(count) FROM View SINCE 2 WEEKS ago TIMESERIES 1 week facet repo_name "
}
],
"presentation": {
"title": "Views Over Time",
"notes": null
}
},
{
"visualization": "faceted_area_chart",
"data": [
{
"nrql": "SELECT sum(count) FROM Clone SINCE 2 WEEKS ago TIMESERIES 1 week facet repo_name "
}
],
"presentation": {
"title": "Clones Over Time",
"notes": null
}
},
{
"visualization": "facet_table",
"data": [
{
"nrql": "SELECT sum(count) from ReferralPath facet repo_name, path since 14 days ago"
}
],
"presentation": {
"title": "Top Referral Paths",
"notes": null,
"drilldown_dashboard_id": null
}
}
],
"filter": {
"event_types": [
"Clones",
"Referrals",
"Views"
],
"attributes": []
}
}
}