-
Notifications
You must be signed in to change notification settings - Fork 8
/
annotations.py
345 lines (268 loc) · 12 KB
/
annotations.py
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
import json
import logging
from .model import (
APIModel,
APIEndpoints,
RequestsMethods,
AnnotationObject,
AnnotationGraphiteObject,
FindAnnotationObject,
)
from .api import Api
class Annotations:
"""The class includes all necessary methods to access the Grafana annotations API endpoints. Annotations can be organization annotations that can be shown on any dashboard by configuring an annotation data source filtered by tags. They can also be tied to a panel on a dashboard and are then only shown on that panel
HINT: Note Grafana Enterprise API need required permissions if fine-grained access control is enabled
Args:
grafana_api_model (APIModel): Inject a Grafana API model object that includes all necessary values and information
Attributes:
grafana_api_model (APIModel): This is where we store the grafana_api_model
"""
def __init__(self, grafana_api_model: APIModel):
self.grafana_api_model = grafana_api_model
def find_annotations(self, annotation: FindAnnotationObject = None) -> list:
"""The method includes a functionality to find the corresponding annotations
Args:
annotation (FindAnnotationObject): Specify the find annotation object
Raises:
Exception: Unspecified error by executing the API call
Returns:
api_call (list): Returns the result of the find annotations call
"""
custom_query: str = "?"
if annotation is not None:
if annotation.from_value is not None and annotation.from_value != 0:
custom_query = f"from={annotation.from_value}"
if annotation.to_value is not None and annotation.to_value != 0:
custom_query = Api.prepare_api_string(custom_query)
custom_query = f"{custom_query}to={annotation.to_value}"
if annotation.limit != 100 and annotation.limit != 0:
custom_query = Api.prepare_api_string(custom_query)
custom_query = f"{custom_query}limit={annotation.limit}"
if annotation.alert_id is not None and annotation.alert_id != 0:
custom_query = Api.prepare_api_string(custom_query)
custom_query = f"{custom_query}alertId={annotation.alert_id}"
if annotation.dashboard_id is not None and annotation.dashboard_id != 0:
custom_query = Api.prepare_api_string(custom_query)
custom_query = f"{custom_query}dashboardId={annotation.dashboard_id}"
if annotation.panel_id is not None and annotation.panel_id != 0:
custom_query = Api.prepare_api_string(custom_query)
custom_query = f"{custom_query}panelId={annotation.panel_id}"
if annotation.user_id is not None and annotation.user_id != 0:
custom_query = Api.prepare_api_string(custom_query)
custom_query = f"{custom_query}userId={annotation.user_id}"
if annotation.type is not None and len(annotation.type) != 0:
custom_query = Api.prepare_api_string(custom_query)
custom_query = f"{custom_query}type={annotation.type}"
if annotation.tags is not None:
custom_query = Api.prepare_api_string(custom_query)
tags_string: str = ""
for i in range(0, len(annotation.tags)):
tags_string = f"{tags_string}tags={annotation.tags[i]}"
if i < len(annotation.tags) - 1:
tags_string = f"{tags_string}&"
custom_query = f"{custom_query}{tags_string}"
if len(custom_query) == 1:
custom_query = ""
api_call: list = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ANNOTATIONS.value}{custom_query}",
)
if api_call == list() or api_call[0].get("id") is None:
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
return api_call
def create_annotation(
self,
annotation: AnnotationObject,
) -> int:
"""The method includes a functionality to create the corresponding annotation
Args:
annotation (AnnotationObject): Specify the annotation object
Required Permissions:
Action: annotations:create
Scope: annotations:type:
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (int): Returns the annotation id
"""
if (
annotation is not None
and annotation.time != 0
and annotation.time_end != 0
and len(annotation.text) != 0
and len(annotation.tags) != 0
):
annotation_object: dict = dict(
{
"time": annotation.time,
"timeEnd": annotation.time_end,
"tags": annotation.tags,
"text": annotation.text,
}
)
if annotation.dashboard_uid is not None:
annotation_object.update(
dict({"dashboardUID": annotation.dashboard_uid})
)
if annotation.panel_id is not None:
annotation_object.update(dict({"panelId": annotation.panel_id}))
api_call: dict = Api(self.grafana_api_model).call_the_api(
APIEndpoints.ANNOTATIONS.value,
RequestsMethods.POST,
json.dumps(annotation_object),
)
if (
api_call.get("message") != "Annotation added"
or api_call.get("id") is None
):
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
return int(api_call.get("id"))
else:
logging.error("There is no time, time_end, text or tags defined.")
raise ValueError
def create_graphite_annotation(self, annotation: AnnotationGraphiteObject) -> int:
"""The method includes a functionality to create the corresponding graphite annotation
Args:
annotation (AnnotationGraphiteObject): Specify the annotation object
Required Permissions:
Action: annotations:create
Scope: annotations:type:organization
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (int): Returns the annotation id
"""
if (
annotation is not None
and len(annotation.what) != 0
and len(annotation.tags) != 0
):
annotation_object: dict = dict(
{"what": annotation.what, "tags": annotation.tags}
)
if annotation.when is not None:
annotation_object.update(dict({"when": annotation.when}))
if annotation.data is not None:
annotation_object.update(dict({"data": annotation.data}))
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ANNOTATIONS.value}/graphite",
RequestsMethods.POST,
json.dumps(annotation_object),
)
if (
api_call.get("message") != "Graphite annotation added"
or api_call.get("id") is None
):
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
return int(api_call.get("id"))
else:
logging.error("There is no what or tags defined.")
raise ValueError
def update_annotation(self, id: int, annotation: AnnotationObject):
"""The method includes a functionality to update the corresponding annotation specified by the annotation id
Args:
id (int): Specify the annotation object id
annotation (AnnotationObject): Specify the annotation object
Required Permissions:
Action: annotations:write
Scope: annotations:type:
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if id != 0 and annotation is not None:
annotation_object: dict = dict()
if annotation.time is not None and annotation.time != 0:
annotation_object.update(dict({"time": annotation.time}))
if annotation.time_end is not None and annotation.time_end != 0:
annotation_object.update(dict({"timeEnd": annotation.time_end}))
if annotation.text is not None and len(annotation.text) != 0:
annotation_object.update(dict({"text": annotation.text}))
if annotation.tags is not None and len(annotation.tags) != 0:
annotation_object.update(dict({"text": annotation.text}))
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ANNOTATIONS.value}/{id}",
RequestsMethods.PATCH,
json.dumps(annotation_object),
)
if api_call.get("message") != "Annotation patched":
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully updated the annotation.")
else:
logging.error("There is no id defined.")
raise ValueError
def delete_annotation(
self,
id: int,
):
"""The method includes a functionality to delete the corresponding annotation specified by the annotation id
Args:
id (int): Specify the annotation object id
Required Permissions:
Action: annotations:write
Scope: annotations:type:
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if id != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ANNOTATIONS.value}/{id}",
RequestsMethods.DELETE,
)
if api_call.get("message") != "Annotation deleted":
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully deleted the annotation.")
else:
logging.error("There is no id defined.")
raise ValueError
def find_annotation_tags(
self,
tag: str = None,
limit: int = 100,
):
"""The method includes a functionality to find the annotation tags
Args:
tag (str): Specify the optional annotation tag
limit (int): Specify the optional annotation limit (default 100)
Required Permissions:
Action: annotations:read
Scope: N/A
Raises:
Exception: Unspecified error by executing the API call
Returns:
api_call (dict): Returns the result of the find annotation tags call
"""
filter_values: str = ""
if tag is not None and len(tag) != 0:
filter_values = f"?tag={tag}"
if limit != 100:
if tag is None:
filter_values = "?"
if len(filter_values) == 1:
filter_values = f"{filter_values}limit={limit}"
else:
filter_values = f"{filter_values}&limit={limit}"
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.ANNOTATIONS.value}/tags{filter_values}",
)
if api_call == dict() or api_call.get("result") is None:
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
return api_call