-
Notifications
You must be signed in to change notification settings - Fork 3
/
dashboardjson.yaml
50 lines (50 loc) · 1.29 KB
/
dashboardjson.yaml
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
apiVersion: dashboard.newrelic.upbound.io/v1alpha1
kind: DashboardJSON
metadata:
annotations:
meta.upbound.io/example-id: dashboard/v1alpha1/dashboardjson
labels:
testing.upbound.io/example-name: foo-json
name: foo-json
spec:
forProvider:
json: |
{
"name": "New Relic Terraform Example JSON",
"description": null,
"permissions": "PUBLIC_READ_ONLY",
"pages": [{
"name": "New Relic Terraform Example JSON",
"description": null,
"widgets": [{
"title": "Requests per minute",
"layout": {
"column": 1,
"row": 1,
"width": 6,
"height": 3
},
"linkedEntityGuids": null,
"visualization": {
"id": "viz.billboard"
},
"rawConfiguration": {
"facet": {},
"legend": {
"enabled": true
},
"nrqlQueries": [{
"accountId": 123456789,
"query": "FROM Transaction SELECT rate(count(*), 1 minute)"
}
],
"platformOptions": {},
"yAxisLeft": {
"min": 0
}
}
}
]
}
]
}