File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ def scan_datasources(self):
144
144
log .info ("Scanning datasources" )
145
145
try :
146
146
self .data .datasources = munchify (self .grafana .datasource .list_datasources ())
147
- log .info ("Found {} data sources " .format (len (self .data .datasources )))
147
+ log .info ("Found {} data source(s) " .format (len (self .data .datasources )))
148
148
return self .data .datasources
149
149
except GrafanaClientError as ex :
150
150
message = "{name}: {ex}" .format (name = ex .__class__ .__name__ , ex = ex )
@@ -171,7 +171,7 @@ def scan_dashboards(self, dashboard_uids=None):
171
171
continue
172
172
else :
173
173
self .data .dashboard_list = self .grafana .search .search_dashboards (limit = 5000 )
174
- log .info ("Found {} dashboards " .format (len (self .data .dashboard_list )))
174
+ log .info ("Found {} dashboard(s) " .format (len (self .data .dashboard_list )))
175
175
176
176
except GrafanaClientError as ex :
177
177
self .handle_grafana_error (ex )
You can’t perform that action at this time.
0 commit comments