mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
186 lines
5.4 KiB
TypeScript
186 lines
5.4 KiB
TypeScript
import _ from 'lodash';
|
|
import AzureMonitorDatasource from './azure_monitor/azure_monitor_datasource';
|
|
import AppInsightsDatasource from './app_insights/app_insights_datasource';
|
|
import AzureLogAnalyticsDatasource from './azure_log_analytics/azure_log_analytics_datasource';
|
|
|
|
export default class Datasource {
|
|
id: number;
|
|
name: string;
|
|
azureMonitorDatasource: AzureMonitorDatasource;
|
|
appInsightsDatasource: AppInsightsDatasource;
|
|
azureLogAnalyticsDatasource: AzureLogAnalyticsDatasource;
|
|
|
|
/** @ngInject */
|
|
constructor(instanceSettings, private backendSrv, private templateSrv, private $q) {
|
|
this.name = instanceSettings.name;
|
|
this.id = instanceSettings.id;
|
|
this.azureMonitorDatasource = new AzureMonitorDatasource(
|
|
instanceSettings,
|
|
this.backendSrv,
|
|
this.templateSrv,
|
|
this.$q
|
|
);
|
|
this.appInsightsDatasource = new AppInsightsDatasource(
|
|
instanceSettings,
|
|
this.backendSrv,
|
|
this.templateSrv,
|
|
this.$q
|
|
);
|
|
|
|
this.azureLogAnalyticsDatasource = new AzureLogAnalyticsDatasource(
|
|
instanceSettings,
|
|
this.backendSrv,
|
|
this.templateSrv,
|
|
this.$q
|
|
);
|
|
}
|
|
|
|
query(options) {
|
|
const promises: any[] = [];
|
|
const azureMonitorOptions = _.cloneDeep(options);
|
|
const appInsightsTargets = _.cloneDeep(options);
|
|
const azureLogAnalyticsTargets = _.cloneDeep(options);
|
|
|
|
azureMonitorOptions.targets = _.filter(azureMonitorOptions.targets, ['queryType', 'Azure Monitor']);
|
|
appInsightsTargets.targets = _.filter(appInsightsTargets.targets, ['queryType', 'Application Insights']);
|
|
azureLogAnalyticsTargets.targets = _.filter(azureLogAnalyticsTargets.targets, ['queryType', 'Azure Log Analytics']);
|
|
|
|
if (azureMonitorOptions.targets.length > 0) {
|
|
const amPromise = this.azureMonitorDatasource.query(azureMonitorOptions);
|
|
if (amPromise) {
|
|
promises.push(amPromise);
|
|
}
|
|
}
|
|
|
|
if (appInsightsTargets.targets.length > 0) {
|
|
const aiPromise = this.appInsightsDatasource.query(appInsightsTargets);
|
|
if (aiPromise) {
|
|
promises.push(aiPromise);
|
|
}
|
|
}
|
|
|
|
if (azureLogAnalyticsTargets.targets.length > 0) {
|
|
const alaPromise = this.azureLogAnalyticsDatasource.query(azureLogAnalyticsTargets);
|
|
if (alaPromise) {
|
|
promises.push(alaPromise);
|
|
}
|
|
}
|
|
|
|
if (promises.length === 0) {
|
|
return this.$q.when({ data: [] });
|
|
}
|
|
|
|
return Promise.all(promises).then(results => {
|
|
return { data: _.flatten(results) };
|
|
});
|
|
}
|
|
|
|
annotationQuery(options) {
|
|
return this.azureLogAnalyticsDatasource.annotationQuery(options);
|
|
}
|
|
|
|
metricFindQuery(query: string) {
|
|
if (!query) {
|
|
return Promise.resolve([]);
|
|
}
|
|
|
|
const aiResult = this.appInsightsDatasource.metricFindQuery(query);
|
|
if (aiResult) {
|
|
return aiResult;
|
|
}
|
|
|
|
const amResult = this.azureMonitorDatasource.metricFindQuery(query);
|
|
if (amResult) {
|
|
return amResult;
|
|
}
|
|
|
|
const alaResult = this.azureLogAnalyticsDatasource.metricFindQuery(query);
|
|
if (alaResult) {
|
|
return alaResult;
|
|
}
|
|
|
|
return Promise.resolve([]);
|
|
}
|
|
|
|
testDatasource() {
|
|
const promises: any[] = [];
|
|
|
|
if (this.azureMonitorDatasource.isConfigured()) {
|
|
promises.push(this.azureMonitorDatasource.testDatasource());
|
|
}
|
|
|
|
if (this.appInsightsDatasource.isConfigured()) {
|
|
promises.push(this.appInsightsDatasource.testDatasource());
|
|
}
|
|
|
|
if (this.azureLogAnalyticsDatasource.isConfigured()) {
|
|
promises.push(this.azureLogAnalyticsDatasource.testDatasource());
|
|
}
|
|
|
|
if (promises.length === 0) {
|
|
return {
|
|
status: 'error',
|
|
message: `Nothing configured. At least one of the API's must be configured.`,
|
|
title: 'Error',
|
|
};
|
|
}
|
|
|
|
return this.$q.all(promises).then(results => {
|
|
let status = 'success';
|
|
let message = '';
|
|
|
|
for (let i = 0; i < results.length; i++) {
|
|
if (results[i].status !== 'success') {
|
|
status = results[i].status;
|
|
}
|
|
message += `${i + 1}. ${results[i].message} `;
|
|
}
|
|
|
|
return {
|
|
status: status,
|
|
message: message,
|
|
title: _.upperFirst(status),
|
|
};
|
|
});
|
|
}
|
|
|
|
/* Azure Monitor REST API methods */
|
|
getResourceGroups() {
|
|
return this.azureMonitorDatasource.getResourceGroups();
|
|
}
|
|
|
|
getMetricDefinitions(resourceGroup: string) {
|
|
return this.azureMonitorDatasource.getMetricDefinitions(resourceGroup);
|
|
}
|
|
|
|
getResourceNames(resourceGroup: string, metricDefinition: string) {
|
|
return this.azureMonitorDatasource.getResourceNames(resourceGroup, metricDefinition);
|
|
}
|
|
|
|
getMetricNames(resourceGroup: string, metricDefinition: string, resourceName: string) {
|
|
return this.azureMonitorDatasource.getMetricNames(resourceGroup, metricDefinition, resourceName);
|
|
}
|
|
|
|
getMetricMetadata(resourceGroup: string, metricDefinition: string, resourceName: string, metricName: string) {
|
|
return this.azureMonitorDatasource.getMetricMetadata(resourceGroup, metricDefinition, resourceName, metricName);
|
|
}
|
|
|
|
/* Application Insights API method */
|
|
getAppInsightsMetricNames() {
|
|
return this.appInsightsDatasource.getMetricNames();
|
|
}
|
|
|
|
getAppInsightsMetricMetadata(metricName) {
|
|
return this.appInsightsDatasource.getMetricMetadata(metricName);
|
|
}
|
|
|
|
getAppInsightsColumns(refId) {
|
|
return this.appInsightsDatasource.logAnalyticsColumns[refId];
|
|
}
|
|
|
|
/*Azure Log Analytics */
|
|
getAzureLogAnalyticsWorkspaces() {
|
|
return this.azureLogAnalyticsDatasource.getWorkspaces();
|
|
}
|
|
}
|