-
Notifications
You must be signed in to change notification settings - Fork 1
/
snippets.json
51 lines (51 loc) · 1.22 KB
/
snippets.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
{
"New Grafana dashboard": {
"prefix": [
"grafana_dashboard",
"dashboard"
],
"description": "Create a new Grafana dashboard",
"isFileTemplate": true,
"body": [
"{",
" \"title\": \"${1:New dashboard title}\",",
" \"uid\": \"${2:new-dashboard-uid}\",",
" \"annotations\": {",
" \"list\": [",
" {",
" \"builtIn\": 1,",
" \"datasource\": {",
" \"type\": \"grafana\",",
" \"uid\": \"-- Grafana --\"",
" },",
" \"enable\": true,",
" \"hide\": true,",
" \"iconColor\": \"rgba(0, 211, 255, 1)\",",
" \"name\": \"Annotations & Alerts\",",
" \"type\": \"dashboard\"",
" }",
" ]",
" },",
" \"editable\": true,",
" \"fiscalYearStartMonth\": 0,",
" \"graphTooltip\": 0,",
" \"links\": [],",
" \"panels\": [],",
" \"preload\": false,",
" \"schemaVersion\": 39,",
" \"tags\": [],",
" \"templating\": {",
" \"list\": []",
" },",
" \"time\": {",
" \"from\": \"now-6h\",",
" \"to\": \"now\"",
" },",
" \"timepicker\": {},",
" \"timezone\": \"browser\",",
" \"version\": 0,",
" \"weekStart\": \"\"",
"}"
]
}
}