mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Usage Stats: Update known datasource plugins (#17787)
This commit is contained in:
parent
3af7eeb331
commit
0a3f977ea2
@ -24,6 +24,7 @@ const (
|
|||||||
DS_ACCESS_PROXY = "proxy"
|
DS_ACCESS_PROXY = "proxy"
|
||||||
DS_STACKDRIVER = "stackdriver"
|
DS_STACKDRIVER = "stackdriver"
|
||||||
DS_AZURE_MONITOR = "grafana-azure-monitor-datasource"
|
DS_AZURE_MONITOR = "grafana-azure-monitor-datasource"
|
||||||
|
DS_LOKI = "loki"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -82,37 +83,41 @@ func (ds *DataSource) decryptedValue(field string, fallback string) string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var knownDatasourcePlugins = map[string]bool{
|
var knownDatasourcePlugins = map[string]bool{
|
||||||
DS_ES: true,
|
DS_ES: true,
|
||||||
DS_GRAPHITE: true,
|
DS_GRAPHITE: true,
|
||||||
DS_INFLUXDB: true,
|
DS_INFLUXDB: true,
|
||||||
DS_INFLUXDB_08: true,
|
DS_INFLUXDB_08: true,
|
||||||
DS_KAIROSDB: true,
|
DS_KAIROSDB: true,
|
||||||
DS_CLOUDWATCH: true,
|
DS_CLOUDWATCH: true,
|
||||||
DS_PROMETHEUS: true,
|
DS_PROMETHEUS: true,
|
||||||
DS_OPENTSDB: true,
|
DS_OPENTSDB: true,
|
||||||
DS_POSTGRES: true,
|
DS_POSTGRES: true,
|
||||||
DS_MYSQL: true,
|
DS_MYSQL: true,
|
||||||
DS_MSSQL: true,
|
DS_MSSQL: true,
|
||||||
DS_STACKDRIVER: true,
|
DS_STACKDRIVER: true,
|
||||||
DS_AZURE_MONITOR: true,
|
DS_AZURE_MONITOR: true,
|
||||||
"opennms": true,
|
DS_LOKI: true,
|
||||||
"abhisant-druid-datasource": true,
|
"opennms": true,
|
||||||
"dalmatinerdb-datasource": true,
|
"abhisant-druid-datasource": true,
|
||||||
"gnocci": true,
|
"dalmatinerdb-datasource": true,
|
||||||
"zabbix": true,
|
"gnocci": true,
|
||||||
"newrelic-app": true,
|
"zabbix": true,
|
||||||
"grafana-datadog-datasource": true,
|
"newrelic-app": true,
|
||||||
"grafana-simple-json": true,
|
"grafana-datadog-datasource": true,
|
||||||
"grafana-splunk-datasource": true,
|
"grafana-simple-json": true,
|
||||||
"udoprog-heroic-datasource": true,
|
"grafana-splunk-datasource": true,
|
||||||
"grafana-openfalcon-datasource": true,
|
"udoprog-heroic-datasource": true,
|
||||||
"opennms-datasource": true,
|
"grafana-openfalcon-datasource": true,
|
||||||
"rackerlabs-blueflood-datasource": true,
|
"opennms-datasource": true,
|
||||||
"crate-datasource": true,
|
"rackerlabs-blueflood-datasource": true,
|
||||||
"ayoungprogrammer-finance-datasource": true,
|
"crate-datasource": true,
|
||||||
"monasca-datasource": true,
|
"ayoungprogrammer-finance-datasource": true,
|
||||||
"vertamedia-clickhouse-datasource": true,
|
"monasca-datasource": true,
|
||||||
"alexanderzobnin-zabbix-datasource": true,
|
"vertamedia-clickhouse-datasource": true,
|
||||||
|
"alexanderzobnin-zabbix-datasource": true,
|
||||||
|
"grafana-influxdb-flux-datasource": true,
|
||||||
|
"doitintl-bigquery-datasource": true,
|
||||||
|
"grafana-azure-data-explorer-datasource": true,
|
||||||
}
|
}
|
||||||
|
|
||||||
func IsKnownDataSourcePlugin(dsType string) bool {
|
func IsKnownDataSourcePlugin(dsType string) bool {
|
||||||
|
Loading…
Reference in New Issue
Block a user