-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplugin.json
More file actions
81 lines (81 loc) · 2.39 KB
/
plugin.json
File metadata and controls
81 lines (81 loc) · 2.39 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
{
"$schema": "https://raw.githubusercontent.com/grafana/grafana/master/docs/sources/developers/plugins/plugin.schema.json",
"type": "datasource",
"name": "ServiceNow Cloud Observability",
"id": "servicenow-cloudobservability-datasource",
"logs": true,
"metrics": true,
"info": {
"description": "Instantly visualize ServiceNow Cloud Observability (formerly known as Lightstep) data in Grafana",
"author": {
"name": "ServiceNow Cloud Observability",
"url": "https://www.servicenow.com/products/observability.html"
},
"keywords": ["ServiceNow", "cloud", "observability", "OpenTelemetry", "OTel", "metrics", "spans", "traces"],
"logos": {
"small": "img/logo_small.svg",
"large": "img/logo_large.svg"
},
"links": [
{
"name": "ServiceNow Cloud Observability",
"url": "https://www.servicenow.com/products/observability.html"
},
{
"name": "Github",
"url": "https://github.com/lightstep/servicenow-cloud-observability-datasource"
}
],
"screenshots": [],
"version": "%VERSION%",
"updated": "%TODAY%"
},
"dependencies": {
"grafanaDependency": ">=7.2.0",
"plugins": []
},
"routes": [
{
"path": "test",
"url": "https://{{ or .JsonData.apiHost \"api.lightstep.com\"}}/public/v0.2/{{ .JsonData.orgName}}/test",
"headers": [
{
"name": "Authorization",
"content": "Bearer {{ .SecureJsonData.apiKey }}"
},
{
"name": "Content-Type",
"content": "application/json"
}
]
},
{
"path": "query",
"url": "https://{{ or .JsonData.apiHost \"api.lightstep.com\"}}/public/v0.2/{{ .JsonData.orgName}}/projects/{{ .JsonData.projectName}}/telemetry/query_timeseries",
"headers": [
{
"name": "Authorization",
"content": "Bearer {{ .SecureJsonData.apiKey }}"
},
{
"name": "Content-Type",
"content": "application/json"
}
]
},
{
"path": "projects",
"url": "https://{{ or .JsonData.apiHost \"api.lightstep.com\"}}/public/v0.2/{{ .JsonData.orgName}}/projects",
"headers": [
{
"name": "Authorization",
"content": "Bearer {{ .SecureJsonData.apiKey }}"
},
{
"name": "Content-Type",
"content": "application/json"
}
]
}
]
}