Exception: Grafana::InvalidDatasourceQueryProvidedError

Inherits:
GrafanaError
  • Object
show all
Defined in:
lib/grafana/errors.rb

Overview

Raised if a datasource shall be queried, which is not (yet) supported by the reporter

Instance Method Summary collapse

Constructor Details

#initialize(query) ⇒ InvalidDatasourceQueryProvidedError

Returns a new instance of InvalidDatasourceQueryProvidedError.



70
71
72
# File 'lib/grafana/errors.rb', line 70

def initialize(query)
  super("The datasource query provided, does not look like a grafana datasource target (received: #{query}).")
end