forked from simPod/GrafanaJsonDatasource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.yaml
243 lines (243 loc) · 8.02 KB
/
openapi.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
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
openapi: 3.0.0
info:
title: simPod JSON Datasource API
description: API definition for the Grafana plugin simpod json datasource
https://github.com/simPod/grafana-json-datasource
version: "0.1"
paths:
/:
get:
summary: "Test connection"
description: Used for "Test connection" on the datasource config page
operationId: api.endpoints.datasource_health
tags:
- Health Check
responses:
'200':
description: Positive health check
/search:
post:
summary: List available metrics
description: Used by the find metric options on the query tab in panels
operationId: api.endpoints.list_metrics
tags:
- Visualization
requestBody:
required: false
description: The body is sent when using query variables
content:
application/json:
schema:
type: object
properties:
target:
type: string
example: "speed"
responses:
'200':
description: ""
content:
application/json:
schema:
type: array
items:
oneOf:
- type: string
example: ["speed", "pressure", "temperature", "latitude", "voltage"]
- type: object
description: List of text and numeric representation of a metrics. For
example metrics and their (database) IDs
example: [{"text" :"speed", "value": 1}, {"text" :"temperature", "value": 2}]
properties:
text:
type: string
value:
type: number
/query:
post:
summary: Query
description: Returns metrics data
operationId: api.endpoints.query
tags:
- Visualization
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
panelId:
oneOf:
- type: string
example: Q-1599986187842-0.164611811105138-0
- type: number
example: 1
range:
type: object
properties:
from:
type: string
format: date-time
to:
type: string
format: date-time
raw:
$ref: '#/components/schemas/raw-time-frame'
rangeRaw:
$ref: '#/components/schemas/raw-time-frame'
interval:
type: string
example: 30s
intervalMs:
type: number
example: 5500
maxDataPoints:
type: number
example: 50
targets:
type: array
items:
type: object
required: [target]
properties:
target:
type: string
example: "upper_25"
refId:
type: string
type:
type: string
enum: ["timeseries", "table"]
data:
description: arbitrary "additional data" the user can pass in
type: object
scopedVars:
type: object
example:
__interval: {'text': '1s', 'value': '1s'}
__interval_ms: {'text': 1000, 'value': 1000}
adhocFilters:
type: array
items:
type: object
properties:
key:
type: string
example: City
operator:
type: string
example: "="
value:
type: string
example: Berlin
responses:
'200':
description: "Can be a 'timeseries' or 'table' response"
content:
application/json:
schema:
type: array
items:
anyOf:
- type: object
description: timeseries case
required: ["target", "datapoints"]
properties:
target:
type: string
example: "upper_25"
datapoints:
type: array
example: [ [2.5, 1557385723416], [3.5, 1557385731634] ]
items:
type: array
description: First value is Metric value as a float.
Second values is unix timestamp in milliseconds
minItems: 2
maxItems: 2
items:
type: number
- type: object
description: table case
required: ["type", "columns", "rows"]
properties:
type:
type: string
enum: ["table"]
columns:
type: array
items:
type: object
required: ["text"]
example:
- {"text": "Time", "type": "time"}
- {"text": "Country", "type": "string"}
- {"text": "Value", "type": "number"}
properties:
text:
type: string
type:
type: string
rows:
type: array
example: [[1557385723416,"SE",123], [1557385731634,"SE", 456]]
items:
anyOf:
- type: string
- type: number
/tag-keys:
post:
summary: Keys for ad hoc filters
description: returns possible keys for ad hoc filters
operationId: api.endpoints.tag_keys
tags:
- Ad Hoc Filters
responses:
'200':
description: List of ad hoc filter keys
content:
application/json:
schema:
type: array
items:
type: object
properties:
type:
type: string
text:
type: string
example:
- {"type":"string","text":"City"}
- {"type":"string","text":"Country"}
/tag-values:
post:
summary: Values for ad hoc filters
description: returns possible values for ad hoc filters
operationId: api.endpoints.tag_values
tags:
- Ad Hoc Filters
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [key]
properties:
key:
type: string
responses:
'200':
description: A valid response
components:
schemas:
raw-time-frame:
type: object
properties:
from:
type: string
example: now-1h
to:
type: string
example: now