mirror of
https://github.com/grafana/grafana.git
synced 2025-01-09 23:53:25 -06:00
82 lines
2.6 KiB
Go
82 lines
2.6 KiB
Go
package azuremonitor
|
|
|
|
import (
|
|
"github.com/grafana/grafana-azure-sdk-go/azsettings"
|
|
|
|
"github.com/grafana/grafana/pkg/tsdb/azuremonitor/types"
|
|
)
|
|
|
|
// Azure cloud query types
|
|
const (
|
|
azureMonitor = "Azure Monitor"
|
|
azureLogAnalytics = "Azure Log Analytics"
|
|
azureResourceGraph = "Azure Resource Graph"
|
|
)
|
|
|
|
var azManagement = types.AzRoute{
|
|
URL: "https://management.azure.com",
|
|
Scopes: []string{"https://management.azure.com/.default"},
|
|
Headers: map[string]string{"x-ms-app": "Grafana"},
|
|
}
|
|
|
|
var azUSGovManagement = types.AzRoute{
|
|
URL: "https://management.usgovcloudapi.net",
|
|
Scopes: []string{"https://management.usgovcloudapi.net/.default"},
|
|
Headers: map[string]string{"x-ms-app": "Grafana"},
|
|
}
|
|
|
|
var azGermanyManagement = types.AzRoute{
|
|
URL: "https://management.microsoftazure.de",
|
|
Scopes: []string{"https://management.microsoftazure.de/.default"},
|
|
Headers: map[string]string{"x-ms-app": "Grafana"},
|
|
}
|
|
|
|
var azChinaManagement = types.AzRoute{
|
|
URL: "https://management.chinacloudapi.cn",
|
|
Scopes: []string{"https://management.chinacloudapi.cn/.default"},
|
|
Headers: map[string]string{"x-ms-app": "Grafana"},
|
|
}
|
|
|
|
var azLogAnalytics = types.AzRoute{
|
|
URL: "https://api.loganalytics.io",
|
|
Scopes: []string{"https://api.loganalytics.io/.default"},
|
|
Headers: map[string]string{"x-ms-app": "Grafana", "Cache-Control": "public, max-age=60"},
|
|
}
|
|
|
|
var azChinaLogAnalytics = types.AzRoute{
|
|
URL: "https://api.loganalytics.azure.cn",
|
|
Scopes: []string{"https://api.loganalytics.azure.cn/.default"},
|
|
Headers: map[string]string{"x-ms-app": "Grafana", "Cache-Control": "public, max-age=60"},
|
|
}
|
|
|
|
var azUSGovLogAnalytics = types.AzRoute{
|
|
URL: "https://api.loganalytics.us",
|
|
Scopes: []string{"https://api.loganalytics.us/.default"},
|
|
Headers: map[string]string{"x-ms-app": "Grafana", "Cache-Control": "public, max-age=60"},
|
|
}
|
|
|
|
var (
|
|
// The different Azure routes are identified by its cloud (e.g. public or gov)
|
|
// and the service to query (e.g. Azure Monitor or Azure Log Analytics)
|
|
routes = map[string]map[string]types.AzRoute{
|
|
azsettings.AzurePublic: {
|
|
azureMonitor: azManagement,
|
|
azureLogAnalytics: azLogAnalytics,
|
|
azureResourceGraph: azManagement,
|
|
},
|
|
azsettings.AzureUSGovernment: {
|
|
azureMonitor: azUSGovManagement,
|
|
azureLogAnalytics: azUSGovLogAnalytics,
|
|
azureResourceGraph: azUSGovManagement,
|
|
},
|
|
azsettings.AzureGermany: {
|
|
azureMonitor: azGermanyManagement,
|
|
},
|
|
azsettings.AzureChina: {
|
|
azureMonitor: azChinaManagement,
|
|
azureLogAnalytics: azChinaLogAnalytics,
|
|
azureResourceGraph: azChinaManagement,
|
|
},
|
|
}
|
|
)
|