-
Notifications
You must be signed in to change notification settings - Fork 7
/
dashboard.py
869 lines (708 loc) · 32 KB
/
dashboard.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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
import json
import logging
from .model import APIModel, APIEndpoints, RequestsMethods, PublicDashboard
from .folder import Folder
from .api import Api
class Dashboard:
"""The class includes all necessary methods to access the Grafana dashboard API endpoints
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 create_or_update_dashboard(
self,
dashboard_path: str,
dashboard_json: dict,
message: str,
overwrite: bool = False,
):
"""The method includes a functionality to create the specified dashboard
Args:
dashboard_path (str): Specify the dashboard path in which the dashboard is to be placed
dashboard_json (dict): Specify the inserted dashboard as dict
message (str): Specify the message that should be injected as commit message inside the dashboard
overwrite (bool): Should the already existing dashboard be overwritten (default False)
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if len(dashboard_path) != 0 and dashboard_json != dict() and len(message) != 0:
folder_id: int = Folder(
self.grafana_api_model
).get_folder_id_by_dashboard_path(dashboard_path)
dashboard_json_complete: dict = {
"dashboard": dashboard_json,
"folderId": folder_id,
"message": message,
"overwrite": overwrite,
}
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/db",
RequestsMethods.POST,
json.dumps(dashboard_json_complete),
)
if api_call.get("status") != "success":
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully deployed the dashboard.")
else:
logging.error(
"There is no dashboard_path or dashboard_json or message defined."
)
raise ValueError
def delete_dashboard_by_name_and_path(
self, dashboard_name: str, dashboard_path: str
):
"""The method includes a functionality to delete the specified dashboard inside the model
Args:
dashboard_name (str): Specify the dashboard name of the deleted dashboard
dashboard_path (str): Specify the dashboard path in which the dashboard is to be placed
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if len(dashboard_name) != 0 and len(dashboard_path) != 0:
dashboard_uid: dict = self.get_dashboard_uid_and_id_by_name_and_folder(
dashboard_name, dashboard_path
)
if len(dashboard_uid) != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/uid/{dashboard_uid.get('uid')}",
RequestsMethods.DELETE,
)
if f"Dashboard {dashboard_name} deleted" != api_call.get("message"):
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully destroyed the dashboard.")
else:
logging.error("Nothing to delete. There is no dashboard available.")
raise ValueError
else:
logging.error("There is no dashboard_name or dashboard_path defined.")
raise ValueError
def get_dashboard_by_uid(self, uid: str) -> dict:
"""The method includes a functionality to get the dashboard from the specified uid
Args:
uid (str): Specify the uid of the dashboard
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (dict): Returns the dashboard
"""
if len(uid) != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/uid/{uid}"
)
if api_call.get("dashboard") is None:
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
return api_call
else:
logging.error("There is no dashboard uid defined.")
raise ValueError
def get_dashboard_home(self) -> dict:
"""The method includes a functionality to get the home dashboard
Raises:
Exception: Unspecified error by executing the API call
Returns:
api_call (dict): Returns the home dashboard
"""
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/home"
)
if api_call.get("dashboard") is None:
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
return api_call
def get_dashboard_tags(self) -> list:
"""The method includes a functionality to get the all tags of all dashboards
Raises:
Exception: Unspecified error by executing the API call
Returns:
api_call (list): Returns all dashboard tags
"""
api_call: list = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/tags"
)
if api_call == list() or api_call[0].get("term") is None:
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
return api_call
def get_dashboard_uid_and_id_by_name_and_folder(
self, dashboard_name: str, dashboard_path: str
) -> dict:
"""The method includes a functionality to extract the dashboard uid specified inside the model
Args:
dashboard_name (str): Specify the dashboard name of the dashboard
dashboard_path (str): Specify the dashboard path of the dashboard
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (dict): Returns the dashboard uid and the id
"""
if len(dashboard_name) != 0 and len(dashboard_path) != 0:
folder_id: int = Folder(
self.grafana_api_model
).get_folder_id_by_dashboard_path(dashboard_path)
search_query: str = (
f"{APIEndpoints.SEARCH.value}?folderIds={folder_id}&query={dashboard_name}"
)
dashboard_meta: list = Api(self.grafana_api_model).call_the_api(
search_query
)
for dashboard_meta_object in dashboard_meta:
if dashboard_meta_object.get("title") is not None:
if dashboard_meta_object.get("title") == dashboard_name:
if (
dashboard_meta_object.get("uid") is not None
and dashboard_meta_object.get("id") is not None
):
return dict(
{
"uid": dashboard_meta_object.get("uid"),
"id": dashboard_meta_object.get("id"),
}
)
else:
logging.error("There is no uid or id defined.")
raise ValueError
else:
logging.error("There is no title defined.")
raise ValueError
else:
logging.error("There is no dashboard_name or dashboard_path defined.")
raise ValueError
def get_dashboard_permissions(self, id: int) -> list:
"""The method includes a functionality to extract the dashboard permissions based on the specified id
Args:
id (int): Specify the id of the dashboard
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (list): Returns the dashboard permissions of a dashboard as list
"""
if id != 0:
api_call: list = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/id/{id}/permissions"
)
if api_call == list() or api_call[0].get("role") is None:
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
return api_call
else:
logging.error("There is no dashboard id defined.")
raise ValueError
def get_dashboard_permissions_by_uid(self, uid: str) -> list:
"""The method includes a functionality to extract the dashboard permissions based on the specified uid
Args:
uid (str): Specify the uid of the dashboard
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (list): Returns the dashboard permissions of a dashboard as list
"""
if len(uid) != 0:
api_call: list = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/uid/{uid}/permissions"
)
if api_call == list() or api_call[0].get("role") is None:
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
return api_call
else:
logging.error("There is no dashboard uid defined.")
raise ValueError
def update_dashboard_permissions(self, id: int, permission_json: dict):
"""The method includes a functionality to update the dashboard permissions based on the specified id and the permission json document
Args:
id (int): Specify the id of the dashboard
permission_json (dict): Specify the inserted permissions as dict
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if id != 0 and len(permission_json) != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/id/{id}/permissions",
RequestsMethods.POST,
json.dumps(permission_json),
)
if api_call.get("message") != "Dashboard permissions updated":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully modified the dashboard permissions.")
else:
logging.error("There is no dashboard id or permission json defined.")
raise ValueError
def update_dashboard_permissions_by_uid(self, uid: str, permission_json: dict):
"""The method includes a functionality to update the dashboard permissions based on the specified uid and the permission json document
Args:
uid (str): Specify the uid of the dashboard
permission_json (dict): Specify the inserted permissions as dict
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if len(uid) != 0 and len(permission_json) != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/uid/{uid}/permissions",
RequestsMethods.POST,
json.dumps(permission_json),
)
if api_call.get("message") != "Dashboard permissions updated":
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully modified the dashboard permissions.")
else:
logging.error("There is no dashboard uid or permission json defined.")
raise ValueError
def get_dashboard_versions(self, id: int) -> list:
"""The method includes a functionality to extract the versions of a dashboard based on the specified id
Args:
id (int): Specify the id of the dashboard
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (list): Returns all dashboard versions of a dashboard as list
"""
if id != 0:
api_call: list = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/id/{id}/versions",
)
if api_call == list() or api_call[0].get("id") is None:
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
return api_call
else:
logging.error("There is no dashboard id defined.")
raise ValueError
def get_dashboard_versions_by_uid(self, uid: str) -> list:
"""The method includes a functionality to extract the versions of a dashboard based on the specified uid
Args:
uid (str): Specify the id of the dashboard
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (list): Returns all dashboard versions of a dashboard as list
"""
if len(uid) != 0:
api_call: list = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/uid/{uid}/versions",
)
if api_call == list() or api_call[0].get("uid") is None:
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
return api_call
else:
logging.error("There is no dashboard uid defined.")
raise ValueError
def get_dashboard_version(self, id: int, version_id: int) -> dict:
"""The method includes a functionality to extract a specified version of a dashboard based on the specified dashboard id and a version_id of the dashboard
Args:
id (int): Specify the id of the dashboard
version_id (int): Specify the version_id of a dashboard
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (list): Returns a dashboard version of a dashboard as dict
"""
if id != 0 and version_id != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/id/{id}/versions/{version_id}",
)
if api_call == dict() or api_call.get("id") is None:
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
return api_call
else:
logging.error("There is no dashboard id or version_id defined.")
raise ValueError
def get_dashboard_version_by_uid(self, uid: str, version_id: int) -> dict:
"""The method includes a functionality to extract a specified version of a dashboard based on the specified dashboard uid and a version_id of the dashboard
Args:
uid (str): Specify the uid of the dashboard
version_id (int): Specify the version_id of a dashboard
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (list): Returns a dashboard version of a dashboard as dict
"""
if len(uid) != 0 and version_id != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/uid/{uid}/versions/{version_id}",
)
if api_call == dict() or api_call.get("uid") is None:
logging.error(f"Please, check the error: {api_call}.")
raise Exception
else:
return api_call
else:
logging.error("There is no dashboard uid or version_id defined.")
raise ValueError
def restore_dashboard_version(self, id: int, version: dict):
"""The method includes a functionality to restore a specified version of a dashboard based on the specified dashboard id and a version as dict of the dashboard
Args:
id (int): Specify the id of the dashboard
version (dict): Specify the version_id of a dashboard
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if id != 0 and version != dict():
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/id/{id}/restore",
RequestsMethods.POST,
json.dumps(version),
)
if (
api_call.get("status") != "success"
or api_call.get("message") is not None
):
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully restored the dashboard.")
else:
logging.error("There is no dashboard id or version_id defined.")
raise ValueError
def restore_dashboard_version_by_uid(self, uid: str, version: dict):
"""The method includes a functionality to restore a specified version of a dashboard based on the specified dashboard uid and a version as dict of the dashboard
Args:
uid (str): Specify the uid of the dashboard
version (dict): Specify the version_id of a dashboard
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if len(uid) != 0 and version != dict():
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/uid/{uid}/restore",
RequestsMethods.POST,
json.dumps(version),
)
if (
api_call.get("status") != "success"
or api_call.get("message") is not None
):
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
logging.info("You successfully restored the dashboard.")
else:
logging.error("There is no dashboard uid or version_id defined.")
raise ValueError
def calculate_dashboard_diff(
self,
dashboard_id_and_version_base: dict,
dashboard_id_and_version_new: dict,
diff_type: str = "json",
) -> str:
"""The method includes a functionality to calculate the diff of specified versions of a dashboard based on the specified dashboard uid and the selected version of the base dashboard and the new dashboard and the diff type (basic or json)
Args:
dashboard_id_and_version_base (dict): Specify the version and id of the base dashboard
dashboard_id_and_version_new (dict): Specify the version and id of the new dashboard
diff_type (str): Specify the diff type (basic or json) (default json)
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (str): Returns the difference of the two specified dashboards
"""
possible_diff_types: list = list(["basic", "json"])
if diff_type.lower() in possible_diff_types:
if (
dashboard_id_and_version_base != dict()
and dashboard_id_and_version_new != 0
):
diff_object: dict = dict()
diff_object.update({"base": dashboard_id_and_version_base})
diff_object.update({"new": dashboard_id_and_version_new})
diff_object.update({"diffType": diff_type.lower()})
api_call: any = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/calculate-diff",
RequestsMethods.POST,
json.dumps(diff_object),
)
if api_call.status_code != 200:
logging.error(f"Check the error: {api_call.text}.")
raise Exception
else:
return api_call.text
else:
logging.error(
"There is no dashboard_uid_and_version_base or dashboard_uid_and_version_new defined."
)
raise ValueError
else:
logging.error(
f"The diff_type: {diff_type.lower()} is not valid. Please specify a valid value."
)
raise ValueError
def get_public_dashboards(self, per_page: int = None, page: int = None) -> dict:
"""The method includes a functionality to get all public available dashboards
Required Permissions:
Action: dashboards:read
Scope: dashboards:uid:<dashboard UID>
Args:
per_page (int): Specify the value per page size
page (int): Specify the page
Raises:
Exception: Unspecified error by executing the API call
Returns:
api_call (dict): Returns all public available dashboards
"""
optional_parts: str = "?"
if per_page is not None:
optional_parts += f"perpage={per_page}"
if page is not None:
if len(optional_parts) > 1:
optional_parts += "&"
optional_parts += f"page={page}"
if len(optional_parts) == 1:
optional_parts: str = ""
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/public-dashboards{optional_parts}",
)
if isinstance(api_call, dict) is False or api_call == dict():
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
return api_call
def get_public_dashboard_by_uid(
self,
dashboard_uid: str,
) -> dict:
"""The method includes a functionality to get a public available dashboard specified by dashboard_uid
Required Permissions:
Action: dashboards:read
Scope: dashboards:uid:<dashboard UID>
Args:
dashboard_uid (str): Specify the dashboard_uid
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (dict): Returns the corresponding public available dashboard
"""
if dashboard_uid is not None and len(dashboard_uid) != 0:
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/uid/{dashboard_uid}/public-dashboards",
)
if isinstance(api_call, dict) is False or api_call == dict():
logging.error(f"Check the error: {api_call}.")
raise Exception
else:
return api_call
else:
logging.error("There is no dashboard uid defined.")
raise ValueError
def create_public_dashboard(
self, dashboard_uid: str, public_dashboard: PublicDashboard = PublicDashboard()
) -> dict:
"""The method includes a functionality to create a public available dashboard
Required Permissions:
Action: dashboards.public:write
Scope: dashboards:uid:<dashboard UID>
Args:
dashboard_uid (str): Specify the dashboard_uid
public_dashboard (PublicDashboard): Specify the optional public dashboard object
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (dict): Returns the corresponding public available dashboard
"""
if (
dashboard_uid is not None
and len(dashboard_uid) != 0
and public_dashboard is not None
):
public_dashboard_result: dict = dict(
{
"uid": public_dashboard.uid,
"accessToken": public_dashboard.access_token,
"timeSelectionEnabled": public_dashboard.time_selection_enabled,
"isEnabled": public_dashboard.is_enabled,
"annotationsEnabled": public_dashboard.annotations_enabled,
"share": public_dashboard.share,
}
)
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/uid/{dashboard_uid}/public-dashboards",
RequestsMethods.POST,
json.dumps(public_dashboard_result),
response_status_code=True,
)
status_code: int = api_call.get("status")
public_dashboard_status_dict: dict = dict(
{
400: "Dashboard is already public.",
401: "Unauthorized.",
403: "Access denied.",
404: "Dashboard not found.",
}
)
if status_code == 200 and (
isinstance(api_call, dict) is True or api_call != dict()
):
return api_call
elif 400 <= status_code <= 404:
logging.error(public_dashboard_status_dict.get(status_code))
raise Exception
else:
logging.error("There is no dashboard uid or public dashboard defined.")
raise ValueError
def update_public_dashboard(
self,
dashboard_uid: str,
public_dashboard_uid: str,
time_selection_enabled: bool = None,
is_enabled: bool = None,
annotations_enabled: bool = None,
share: str = None,
) -> dict:
"""The method includes a functionality to update a public available dashboard
Required Permissions:
Action: dashboards.public:write
Scope: dashboards:uid:<dashboard UID>
Args:
dashboard_uid (str): Specify the dashboard_uid
public_dashboard_uid (str): Specify the public_dashboard_uid
time_selection_enabled (bool): Specify the optional enablement of the time picker inside the public dashboard (default None)
is_enabled (bool): Specify the optional enablement of the public dashboard (default None)
annotations_enabled (bool): Specify the optional enablement of the annotations inside the public dashboard (default None)
share (str): Specify the optional share mode of the public dashboard (default None)
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
api_call (dict): Returns the corresponding public available dashboard
"""
if (
dashboard_uid is not None
and len(dashboard_uid) != 0
and public_dashboard_uid is not None
and len(public_dashboard_uid) != 0
):
public_dashboard_result: dict = dict()
if time_selection_enabled is not None:
public_dashboard_result.update(
{"timeSelectionEnabled": time_selection_enabled}
)
if is_enabled is not None:
public_dashboard_result.update({"isEnabled": is_enabled})
if annotations_enabled is not None:
public_dashboard_result.update(
{"annotationsEnabled": annotations_enabled}
)
if share is not None:
public_dashboard_result.update({"share": share})
if public_dashboard_result == dict():
logging.error(
"There is no values for the update of the public dashboard defined."
)
raise ValueError
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/uid/{dashboard_uid}/public-dashboards/{public_dashboard_uid}",
RequestsMethods.PATCH,
json.dumps(public_dashboard_result),
response_status_code=True,
)
status_code: int = api_call.get("status")
public_dashboard_status_dict: dict = dict(
{
400: "Dashboard is already public.",
401: "Unauthorized.",
403: "Access denied.",
404: "Public dashboard not found.",
}
)
if status_code == 200 and (
isinstance(api_call, dict) is True or api_call != dict()
):
return api_call
elif 400 <= status_code <= 404:
logging.error(public_dashboard_status_dict.get(status_code))
raise Exception
else:
logging.error("There is no dashboard uid or public dashboard defined.")
raise ValueError
def delete_public_dashboard(
self,
dashboard_uid: str,
public_dashboard_uid: str,
):
"""The method includes a functionality to delete a public available dashboard
Required Permissions:
Action: dashboards.public:write
Scope: dashboards:uid:<dashboard UID>
Args:
dashboard_uid (str): Specify the dashboard_uid
public_dashboard_uid (str): Specify the public_dashboard_uid
Raises:
ValueError: Missed specifying a necessary value
Exception: Unspecified error by executing the API call
Returns:
None
"""
if (
dashboard_uid is not None
and len(dashboard_uid) != 0
and public_dashboard_uid is not None
and len(public_dashboard_uid) != 0
):
api_call: dict = Api(self.grafana_api_model).call_the_api(
f"{APIEndpoints.DASHBOARDS.value}/uid/{dashboard_uid}/public-dashboards/{public_dashboard_uid}",
RequestsMethods.DELETE,
response_status_code=True,
)
status_code: int = api_call.get("status")
public_dashboard_status_dict: dict = dict(
{
401: "Unauthorized.",
403: "Access denied.",
}
)
if status_code == 200:
logging.info("You successfully deleted the public dashboard.")
elif 401 <= status_code <= 403:
logging.error(public_dashboard_status_dict.get(status_code))
raise Exception
else:
logging.error("There is no dashboard uid or public dashboard defined.")
raise ValueError