mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 02:23:31 -06:00
* CloudWatch: call query method from DataSourceWithBackend to support public dashboards * add test * remove unneeded properties from test case * update betterer * add parens to group related logic * remove unnecessary aliasing of variable * use t.Cleanup * remove redundant check * add comment
195 lines
7.1 KiB
TypeScript
195 lines
7.1 KiB
TypeScript
import { cloneDeep, find, isEmpty } from 'lodash';
|
|
import { merge, Observable, of } from 'rxjs';
|
|
|
|
import {
|
|
CoreApp,
|
|
DataFrame,
|
|
DataQueryRequest,
|
|
DataQueryResponse,
|
|
DataSourceInstanceSettings,
|
|
DataSourceWithLogsContextSupport,
|
|
LoadingState,
|
|
LogRowContextOptions,
|
|
LogRowModel,
|
|
ScopedVars,
|
|
} from '@grafana/data';
|
|
import { DataSourceWithBackend } from '@grafana/runtime';
|
|
import { getTimeSrv, TimeSrv } from 'app/features/dashboard/services/TimeSrv';
|
|
import { getTemplateSrv, TemplateSrv } from 'app/features/templating/template_srv';
|
|
|
|
import { CloudWatchAnnotationSupport } from './annotationSupport';
|
|
import { DEFAULT_METRICS_QUERY, getDefaultLogsQuery } from './defaultQueries';
|
|
import { isCloudWatchAnnotationQuery, isCloudWatchLogsQuery, isCloudWatchMetricsQuery } from './guards';
|
|
import { CloudWatchLogsLanguageProvider } from './language/cloudwatch-logs/CloudWatchLogsLanguageProvider';
|
|
import { SQLCompletionItemProvider } from './language/cloudwatch-sql/completion/CompletionItemProvider';
|
|
import { LogsCompletionItemProvider } from './language/logs/completion/CompletionItemProvider';
|
|
import { MetricMathCompletionItemProvider } from './language/metric-math/completion/CompletionItemProvider';
|
|
import { CloudWatchAnnotationQueryRunner } from './query-runner/CloudWatchAnnotationQueryRunner';
|
|
import { CloudWatchLogsQueryRunner } from './query-runner/CloudWatchLogsQueryRunner';
|
|
import { CloudWatchMetricsQueryRunner } from './query-runner/CloudWatchMetricsQueryRunner';
|
|
import { ResourcesAPI } from './resources/ResourcesAPI';
|
|
import {
|
|
CloudWatchAnnotationQuery,
|
|
CloudWatchJsonData,
|
|
CloudWatchLogsQuery,
|
|
CloudWatchMetricsQuery,
|
|
CloudWatchQuery,
|
|
} from './types';
|
|
import { CloudWatchVariableSupport } from './variables';
|
|
|
|
export class CloudWatchDatasource
|
|
extends DataSourceWithBackend<CloudWatchQuery, CloudWatchJsonData>
|
|
implements DataSourceWithLogsContextSupport<CloudWatchLogsQuery>
|
|
{
|
|
defaultRegion?: string;
|
|
languageProvider: CloudWatchLogsLanguageProvider;
|
|
sqlCompletionItemProvider: SQLCompletionItemProvider;
|
|
metricMathCompletionItemProvider: MetricMathCompletionItemProvider;
|
|
logsCompletionItemProvider: LogsCompletionItemProvider;
|
|
defaultLogGroups?: string[];
|
|
|
|
type = 'cloudwatch';
|
|
|
|
private metricsQueryRunner: CloudWatchMetricsQueryRunner;
|
|
private annotationQueryRunner: CloudWatchAnnotationQueryRunner;
|
|
logsQueryRunner: CloudWatchLogsQueryRunner;
|
|
resources: ResourcesAPI;
|
|
|
|
constructor(
|
|
private instanceSettings: DataSourceInstanceSettings<CloudWatchJsonData>,
|
|
readonly templateSrv: TemplateSrv = getTemplateSrv(),
|
|
timeSrv: TimeSrv = getTimeSrv()
|
|
) {
|
|
super(instanceSettings);
|
|
this.defaultRegion = instanceSettings.jsonData.defaultRegion;
|
|
this.resources = new ResourcesAPI(instanceSettings, templateSrv);
|
|
this.languageProvider = new CloudWatchLogsLanguageProvider(this);
|
|
this.sqlCompletionItemProvider = new SQLCompletionItemProvider(this.resources, this.templateSrv);
|
|
this.metricMathCompletionItemProvider = new MetricMathCompletionItemProvider(this.resources, this.templateSrv);
|
|
this.metricsQueryRunner = new CloudWatchMetricsQueryRunner(instanceSettings, templateSrv, super.query.bind(this));
|
|
this.logsCompletionItemProvider = new LogsCompletionItemProvider(this.resources, this.templateSrv);
|
|
this.logsQueryRunner = new CloudWatchLogsQueryRunner(
|
|
instanceSettings,
|
|
templateSrv,
|
|
timeSrv,
|
|
super.query.bind(this)
|
|
);
|
|
this.annotationQueryRunner = new CloudWatchAnnotationQueryRunner(
|
|
instanceSettings,
|
|
templateSrv,
|
|
super.query.bind(this)
|
|
);
|
|
this.variables = new CloudWatchVariableSupport(this.resources);
|
|
this.annotations = CloudWatchAnnotationSupport;
|
|
this.defaultLogGroups = instanceSettings.jsonData.defaultLogGroups;
|
|
}
|
|
|
|
filterQuery(query: CloudWatchQuery) {
|
|
return query.hide !== true || (isCloudWatchMetricsQuery(query) && query.id !== '');
|
|
}
|
|
|
|
query(options: DataQueryRequest<CloudWatchQuery>): Observable<DataQueryResponse> {
|
|
options = cloneDeep(options);
|
|
|
|
let queries = options.targets.filter(this.filterQuery);
|
|
|
|
const logQueries: CloudWatchLogsQuery[] = [];
|
|
const metricsQueries: CloudWatchMetricsQuery[] = [];
|
|
const annotationQueries: CloudWatchAnnotationQuery[] = [];
|
|
|
|
queries.forEach((query) => {
|
|
if (isCloudWatchAnnotationQuery(query)) {
|
|
annotationQueries.push(query);
|
|
} else if (isCloudWatchLogsQuery(query)) {
|
|
logQueries.push(query);
|
|
} else {
|
|
metricsQueries.push(query);
|
|
}
|
|
});
|
|
|
|
const dataQueryResponses: Array<Observable<DataQueryResponse>> = [];
|
|
if (logQueries.length) {
|
|
dataQueryResponses.push(this.logsQueryRunner.handleLogQueries(logQueries, options));
|
|
}
|
|
|
|
if (metricsQueries.length) {
|
|
dataQueryResponses.push(this.metricsQueryRunner.handleMetricQueries(metricsQueries, options));
|
|
}
|
|
|
|
if (annotationQueries.length) {
|
|
dataQueryResponses.push(this.annotationQueryRunner.handleAnnotationQuery(annotationQueries, options));
|
|
}
|
|
// No valid targets, return the empty result to save a round trip.
|
|
if (isEmpty(dataQueryResponses)) {
|
|
return of({
|
|
data: [],
|
|
state: LoadingState.Done,
|
|
});
|
|
}
|
|
|
|
return merge(...dataQueryResponses);
|
|
}
|
|
|
|
interpolateVariablesInQueries(queries: CloudWatchQuery[], scopedVars: ScopedVars): CloudWatchQuery[] {
|
|
if (!queries.length) {
|
|
return queries;
|
|
}
|
|
|
|
return queries.map((query) => ({
|
|
...query,
|
|
region: this.metricsQueryRunner.replaceVariableAndDisplayWarningIfMulti(
|
|
this.getActualRegion(query.region),
|
|
scopedVars
|
|
),
|
|
...(isCloudWatchMetricsQuery(query) &&
|
|
this.metricsQueryRunner.interpolateMetricsQueryVariables(query, scopedVars)),
|
|
}));
|
|
}
|
|
|
|
getLogRowContext = async (
|
|
row: LogRowModel,
|
|
context?: LogRowContextOptions,
|
|
query?: CloudWatchLogsQuery
|
|
): Promise<{ data: DataFrame[] }> => {
|
|
return this.logsQueryRunner.getLogRowContext(row, context, query);
|
|
};
|
|
|
|
targetContainsTemplate(target: any) {
|
|
return (
|
|
this.templateSrv.containsTemplate(target.region) ||
|
|
this.templateSrv.containsTemplate(target.namespace) ||
|
|
this.templateSrv.containsTemplate(target.metricName) ||
|
|
this.templateSrv.containsTemplate(target.expression!) ||
|
|
target.logGroupNames?.some((logGroup: string) => this.templateSrv.containsTemplate(logGroup)) ||
|
|
find(target.dimensions, (v, k) => this.templateSrv.containsTemplate(k) || this.templateSrv.containsTemplate(v))
|
|
);
|
|
}
|
|
|
|
getQueryDisplayText(query: CloudWatchQuery) {
|
|
if (isCloudWatchLogsQuery(query)) {
|
|
return query.expression ?? '';
|
|
} else {
|
|
return JSON.stringify(query);
|
|
}
|
|
}
|
|
|
|
// public
|
|
getVariables() {
|
|
return this.resources.getVariables();
|
|
}
|
|
|
|
getActualRegion(region?: string) {
|
|
if (region === 'default' || region === undefined || region === '') {
|
|
return this.defaultRegion ?? '';
|
|
}
|
|
return region;
|
|
}
|
|
|
|
getDefaultQuery(_: CoreApp): Partial<CloudWatchQuery> {
|
|
return {
|
|
...getDefaultLogsQuery(this.instanceSettings.jsonData.logGroups, this.instanceSettings.jsonData.defaultLogGroups),
|
|
...DEFAULT_METRICS_QUERY,
|
|
};
|
|
}
|
|
}
|