mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
AzureMonitor: Fix wrong merge (#38623)
This commit is contained in:
parent
bbaf6a23bb
commit
b25eb0aa74
@ -32,12 +32,13 @@ var (
|
||||
)
|
||||
|
||||
func ProvideService(cfg *setting.Cfg, httpClientProvider *httpclient.Provider, pluginManager plugins.Manager, backendPluginManager backendplugin.Manager) *Service {
|
||||
proxy := &httpServiceProxy{}
|
||||
executors := map[string]azDatasourceExecutor{
|
||||
azureMonitor: &AzureMonitorDatasource{},
|
||||
appInsights: &ApplicationInsightsDatasource{},
|
||||
azureLogAnalytics: &AzureLogAnalyticsDatasource{},
|
||||
insightsAnalytics: &InsightsAnalyticsDatasource{},
|
||||
azureResourceGraph: &AzureResourceGraphDatasource{},
|
||||
azureMonitor: &AzureMonitorDatasource{proxy: proxy},
|
||||
appInsights: &ApplicationInsightsDatasource{proxy: proxy},
|
||||
azureLogAnalytics: &AzureLogAnalyticsDatasource{proxy: proxy},
|
||||
insightsAnalytics: &InsightsAnalyticsDatasource{proxy: proxy},
|
||||
azureResourceGraph: &AzureResourceGraphDatasource{proxy: proxy},
|
||||
}
|
||||
|
||||
im := datasource.NewInstanceManager(NewInstanceSettings(cfg, *httpClientProvider, executors))
|
||||
|
Loading…
Reference in New Issue
Block a user