File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 6
6
- Improved Python API authentication when using URL-based connectivity,
7
7
by respecting the ` credential ` keyword argument
8
8
- Added basic example program about how to import a dashboard
9
+ - Options: Permitted usage without authentication credentials or token
9
10
10
11
## 0.4.0 (2024-10-16)
11
12
- Fixed folder argument issue
Original file line number Diff line number Diff line change @@ -75,9 +75,6 @@ def __init__(self, **kwargs):
75
75
config ["host" ] = kwargs .get ("host" , "localhost" )
76
76
config ["port" ] = kwargs .get ("port" , 3000 )
77
77
config ["token" ] = kwargs .get ("token" , None )
78
- if config ["token" ] is None :
79
- raise GrafanaClient .GrafanaBadInputError ("Grafana authentication token missing" )
80
-
81
78
config ["verify_ssl" ] = kwargs .get ("verify_ssl" , True )
82
79
83
80
self .grafana_api = GrafanaApi .GrafanaApi (
You can’t perform that action at this time.
0 commit comments