mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Chore: Remove angular dependency from data sources * Removes default export for time and template srvs Also uses @grafana/runtime versions of the interfaces where possible * Replace usage of internal templateSrv where possible * Use runtime templateSrv in a couple more places
407 lines
13 KiB
TypeScript
407 lines
13 KiB
TypeScript
import _ from 'lodash';
|
|
|
|
import {
|
|
DataQueryRequest,
|
|
DataQueryResponseData,
|
|
DataSourceApi,
|
|
DataSourceInstanceSettings,
|
|
ScopedVars,
|
|
SelectableValue,
|
|
toDataFrame,
|
|
} from '@grafana/data';
|
|
import { getTemplateSrv, TemplateSrv } from 'app/features/templating/template_srv';
|
|
import { getTimeSrv, TimeSrv } from 'app/features/dashboard/services/TimeSrv';
|
|
|
|
import {
|
|
CloudMonitoringQuery,
|
|
MetricDescriptor,
|
|
CloudMonitoringOptions,
|
|
Filter,
|
|
VariableQueryData,
|
|
QueryType,
|
|
} from './types';
|
|
import { cloudMonitoringUnitMappings } from './constants';
|
|
import API from './api';
|
|
import CloudMonitoringMetricFindQuery from './CloudMonitoringMetricFindQuery';
|
|
|
|
export default class CloudMonitoringDatasource extends DataSourceApi<CloudMonitoringQuery, CloudMonitoringOptions> {
|
|
api: API;
|
|
authenticationType: string;
|
|
|
|
constructor(
|
|
private instanceSettings: DataSourceInstanceSettings<CloudMonitoringOptions>,
|
|
public templateSrv: TemplateSrv = getTemplateSrv(),
|
|
private readonly timeSrv: TimeSrv = getTimeSrv()
|
|
) {
|
|
super(instanceSettings);
|
|
this.authenticationType = instanceSettings.jsonData.authenticationType || 'jwt';
|
|
this.api = new API(`${instanceSettings.url!}/cloudmonitoring/v3/projects/`);
|
|
}
|
|
|
|
get variables() {
|
|
return this.templateSrv.getVariables().map(v => `$${v.name}`);
|
|
}
|
|
|
|
async query(options: DataQueryRequest<CloudMonitoringQuery>): Promise<DataQueryResponseData> {
|
|
const result: DataQueryResponseData[] = [];
|
|
const data = await this.getTimeSeries(options);
|
|
if (data.results) {
|
|
Object.values(data.results).forEach((queryRes: any) => {
|
|
if (!queryRes.series) {
|
|
return;
|
|
}
|
|
const unit = this.resolvePanelUnitFromTargets(options.targets);
|
|
queryRes.series.forEach((series: any) => {
|
|
let timeSerie: any = {
|
|
target: series.name,
|
|
datapoints: series.points,
|
|
refId: queryRes.refId,
|
|
meta: queryRes.meta,
|
|
};
|
|
if (unit) {
|
|
timeSerie = { ...timeSerie, unit };
|
|
}
|
|
const df = toDataFrame(timeSerie);
|
|
|
|
for (const field of df.fields) {
|
|
if (queryRes.meta?.deepLink && queryRes.meta?.deepLink.length > 0) {
|
|
field.config.links = [
|
|
{
|
|
url: queryRes.meta?.deepLink,
|
|
title: 'View in Metrics Explorer',
|
|
targetBlank: true,
|
|
},
|
|
];
|
|
}
|
|
}
|
|
result.push(df);
|
|
});
|
|
});
|
|
return { data: result };
|
|
} else {
|
|
return { data: [] };
|
|
}
|
|
}
|
|
|
|
async annotationQuery(options: any) {
|
|
await this.ensureGCEDefaultProject();
|
|
const annotation = options.annotation;
|
|
const queries = [
|
|
{
|
|
refId: 'annotationQuery',
|
|
type: 'annotationQuery',
|
|
datasourceId: this.id,
|
|
view: 'FULL',
|
|
crossSeriesReducer: 'REDUCE_NONE',
|
|
perSeriesAligner: 'ALIGN_NONE',
|
|
metricType: this.templateSrv.replace(annotation.target.metricType, options.scopedVars || {}),
|
|
title: this.templateSrv.replace(annotation.target.title, options.scopedVars || {}),
|
|
text: this.templateSrv.replace(annotation.target.text, options.scopedVars || {}),
|
|
tags: this.templateSrv.replace(annotation.target.tags, options.scopedVars || {}),
|
|
projectName: this.templateSrv.replace(
|
|
annotation.target.projectName ? annotation.target.projectName : this.getDefaultProject(),
|
|
options.scopedVars || {}
|
|
),
|
|
filters: this.interpolateFilters(annotation.target.filters || [], options.scopedVars),
|
|
},
|
|
];
|
|
|
|
const { data } = await this.api.post({
|
|
from: options.range.from.valueOf().toString(),
|
|
to: options.range.to.valueOf().toString(),
|
|
queries,
|
|
});
|
|
|
|
const results = data.results['annotationQuery'].tables[0].rows.map((v: any) => {
|
|
return {
|
|
annotation: annotation,
|
|
time: Date.parse(v[0]),
|
|
title: v[1],
|
|
tags: [],
|
|
text: v[3],
|
|
} as any;
|
|
});
|
|
|
|
return results;
|
|
}
|
|
|
|
async metricFindQuery(query: VariableQueryData) {
|
|
await this.ensureGCEDefaultProject();
|
|
const cloudMonitoringMetricFindQuery = new CloudMonitoringMetricFindQuery(this);
|
|
return cloudMonitoringMetricFindQuery.execute(query);
|
|
}
|
|
|
|
async getTimeSeries(options: DataQueryRequest<CloudMonitoringQuery>) {
|
|
await this.ensureGCEDefaultProject();
|
|
const queries = options.targets
|
|
.map(this.migrateQuery)
|
|
.filter(this.shouldRunQuery)
|
|
.map(q => this.prepareTimeSeriesQuery(q, options.scopedVars))
|
|
.map(q => ({ ...q, intervalMs: options.intervalMs, type: 'timeSeriesQuery' }));
|
|
|
|
if (queries.length > 0) {
|
|
const { data } = await this.api.post({
|
|
from: options.range.from.valueOf().toString(),
|
|
to: options.range.to.valueOf().toString(),
|
|
queries,
|
|
});
|
|
return data;
|
|
} else {
|
|
return { results: [] };
|
|
}
|
|
}
|
|
|
|
async getLabels(metricType: string, refId: string, projectName: string, groupBys?: string[]) {
|
|
const response = await this.getTimeSeries({
|
|
targets: [
|
|
{
|
|
refId,
|
|
datasourceId: this.id,
|
|
queryType: QueryType.METRICS,
|
|
metricQuery: {
|
|
projectName: this.templateSrv.replace(projectName),
|
|
metricType: this.templateSrv.replace(metricType),
|
|
groupBys: this.interpolateGroupBys(groupBys || [], {}),
|
|
crossSeriesReducer: 'REDUCE_NONE',
|
|
view: 'HEADERS',
|
|
},
|
|
},
|
|
],
|
|
range: this.timeSrv.timeRange(),
|
|
} as DataQueryRequest<CloudMonitoringQuery>);
|
|
const result = response.results[refId];
|
|
return result && result.meta ? result.meta.labels : {};
|
|
}
|
|
|
|
async testDatasource() {
|
|
let status, message;
|
|
const defaultErrorMessage = 'Cannot connect to Google Cloud Monitoring API';
|
|
try {
|
|
await this.ensureGCEDefaultProject();
|
|
const response = await this.api.test(this.getDefaultProject());
|
|
if (response.status === 200) {
|
|
status = 'success';
|
|
message = 'Successfully queried the Google Cloud Monitoring API.';
|
|
} else {
|
|
status = 'error';
|
|
message = response.statusText ? response.statusText : defaultErrorMessage;
|
|
}
|
|
} catch (error) {
|
|
status = 'error';
|
|
if (_.isString(error)) {
|
|
message = error;
|
|
} else {
|
|
message = 'Google Cloud Monitoring: ';
|
|
message += error.statusText ? error.statusText : defaultErrorMessage;
|
|
if (error.data && error.data.error && error.data.error.code) {
|
|
message += ': ' + error.data.error.code + '. ' + error.data.error.message;
|
|
}
|
|
}
|
|
} finally {
|
|
return {
|
|
status,
|
|
message,
|
|
};
|
|
}
|
|
}
|
|
|
|
async getGCEDefaultProject() {
|
|
return this.api
|
|
.post({
|
|
queries: [
|
|
{
|
|
refId: 'getGCEDefaultProject',
|
|
type: 'getGCEDefaultProject',
|
|
datasourceId: this.id,
|
|
},
|
|
],
|
|
})
|
|
.then(({ data }) => {
|
|
return data && data.results && data.results.getGCEDefaultProject && data.results.getGCEDefaultProject.meta
|
|
? data.results.getGCEDefaultProject.meta.defaultProject
|
|
: '';
|
|
})
|
|
.catch(err => {
|
|
throw err.data.error;
|
|
});
|
|
}
|
|
|
|
getDefaultProject(): string {
|
|
const { defaultProject, authenticationType, gceDefaultProject } = this.instanceSettings.jsonData;
|
|
if (authenticationType === 'gce') {
|
|
return gceDefaultProject || '';
|
|
}
|
|
|
|
return defaultProject || '';
|
|
}
|
|
|
|
async ensureGCEDefaultProject() {
|
|
const { authenticationType, gceDefaultProject } = this.instanceSettings.jsonData;
|
|
if (authenticationType === 'gce' && !gceDefaultProject) {
|
|
this.instanceSettings.jsonData.gceDefaultProject = await this.getGCEDefaultProject();
|
|
}
|
|
}
|
|
|
|
async getMetricTypes(projectName: string): Promise<MetricDescriptor[]> {
|
|
if (!projectName) {
|
|
return [];
|
|
}
|
|
|
|
return this.api.get(`${this.templateSrv.replace(projectName)}/metricDescriptors`, {
|
|
responseMap: (m: any) => {
|
|
const [service] = m.type.split('/');
|
|
const [serviceShortName] = service.split('.');
|
|
m.service = service;
|
|
m.serviceShortName = serviceShortName;
|
|
m.displayName = m.displayName || m.type;
|
|
|
|
return m;
|
|
},
|
|
}) as Promise<MetricDescriptor[]>;
|
|
}
|
|
|
|
async getSLOServices(projectName: string): Promise<Array<SelectableValue<string>>> {
|
|
return this.api.get(`${this.templateSrv.replace(projectName)}/services`, {
|
|
responseMap: ({ name }: { name: string }) => ({
|
|
value: name.match(/([^\/]*)\/*$/)![1],
|
|
label: name.match(/([^\/]*)\/*$/)![1],
|
|
}),
|
|
});
|
|
}
|
|
|
|
async getServiceLevelObjectives(projectName: string, serviceId: string): Promise<Array<SelectableValue<string>>> {
|
|
if (!serviceId) {
|
|
return Promise.resolve([]);
|
|
}
|
|
let { projectName: p, serviceId: s } = this.interpolateProps({ projectName, serviceId });
|
|
return this.api.get(`${p}/services/${s}/serviceLevelObjectives`, {
|
|
responseMap: ({ name, displayName, goal }: { name: string; displayName: string; goal: number }) => ({
|
|
value: name.match(/([^\/]*)\/*$/)![1],
|
|
label: displayName,
|
|
goal,
|
|
}),
|
|
});
|
|
}
|
|
|
|
async getProjects() {
|
|
return this.api.get(`projects`, {
|
|
responseMap: ({ projectId, name }: { projectId: string; name: string }) => ({
|
|
value: projectId,
|
|
label: name,
|
|
}),
|
|
baseUrl: `${this.instanceSettings.url!}/cloudresourcemanager/v1/`,
|
|
});
|
|
}
|
|
|
|
migrateQuery(query: CloudMonitoringQuery): CloudMonitoringQuery {
|
|
if (!query.hasOwnProperty('metricQuery')) {
|
|
const { hide, refId, datasource, key, queryType, maxLines, metric, ...rest } = query as any;
|
|
return {
|
|
refId,
|
|
hide,
|
|
queryType: QueryType.METRICS,
|
|
metricQuery: {
|
|
...rest,
|
|
view: rest.view || 'FULL',
|
|
},
|
|
};
|
|
}
|
|
return query;
|
|
}
|
|
|
|
interpolateProps<T extends Record<string, any>>(object: T, scopedVars: ScopedVars = {}): T {
|
|
return Object.entries(object).reduce((acc, [key, value]) => {
|
|
return {
|
|
...acc,
|
|
[key]: value && _.isString(value) ? this.templateSrv.replace(value, scopedVars) : value,
|
|
};
|
|
}, {} as T);
|
|
}
|
|
|
|
shouldRunQuery(query: CloudMonitoringQuery): boolean {
|
|
if (query.hide) {
|
|
return false;
|
|
}
|
|
|
|
if (query.queryType && query.queryType === QueryType.SLO && query.sloQuery) {
|
|
const { selectorName, serviceId, sloId, projectName } = query.sloQuery;
|
|
return !!selectorName && !!serviceId && !!sloId && !!projectName;
|
|
}
|
|
|
|
const { metricType } = query.metricQuery;
|
|
|
|
return !!metricType;
|
|
}
|
|
|
|
prepareTimeSeriesQuery(
|
|
{ metricQuery, refId, queryType, sloQuery }: CloudMonitoringQuery,
|
|
scopedVars: ScopedVars
|
|
): CloudMonitoringQuery {
|
|
return {
|
|
datasourceId: this.id,
|
|
refId,
|
|
queryType,
|
|
metricQuery: {
|
|
...this.interpolateProps(metricQuery, scopedVars),
|
|
projectName: this.templateSrv.replace(
|
|
metricQuery.projectName ? metricQuery.projectName : this.getDefaultProject()
|
|
),
|
|
filters: this.interpolateFilters(metricQuery.filters || [], scopedVars),
|
|
groupBys: this.interpolateGroupBys(metricQuery.groupBys || [], scopedVars),
|
|
view: metricQuery.view || 'FULL',
|
|
},
|
|
sloQuery: sloQuery && this.interpolateProps(sloQuery, scopedVars),
|
|
};
|
|
}
|
|
|
|
interpolateVariablesInQueries(queries: CloudMonitoringQuery[], scopedVars: ScopedVars): CloudMonitoringQuery[] {
|
|
return queries.map(query => this.prepareTimeSeriesQuery(query, scopedVars));
|
|
}
|
|
|
|
interpolateFilters(filters: string[], scopedVars: ScopedVars) {
|
|
const completeFilter = _.chunk(filters, 4)
|
|
.map(([key, operator, value, condition]) => ({
|
|
key,
|
|
operator,
|
|
value,
|
|
...(condition && { condition }),
|
|
}))
|
|
.reduce((res, filter) => (filter.value ? [...res, filter] : res), []);
|
|
|
|
const filterArray = _.flatten(
|
|
completeFilter.map(({ key, operator, value, condition }: Filter) => [
|
|
this.templateSrv.replace(key, scopedVars || {}),
|
|
operator,
|
|
this.templateSrv.replace(value, scopedVars || {}, 'regex'),
|
|
...(condition ? [condition] : []),
|
|
])
|
|
);
|
|
|
|
return filterArray || [];
|
|
}
|
|
|
|
interpolateGroupBys(groupBys: string[], scopedVars: {}): string[] {
|
|
let interpolatedGroupBys: string[] = [];
|
|
(groupBys || []).forEach(gb => {
|
|
const interpolated = this.templateSrv.replace(gb, scopedVars || {}, 'csv').split(',');
|
|
if (Array.isArray(interpolated)) {
|
|
interpolatedGroupBys = interpolatedGroupBys.concat(interpolated);
|
|
} else {
|
|
interpolatedGroupBys.push(interpolated);
|
|
}
|
|
});
|
|
return interpolatedGroupBys;
|
|
}
|
|
|
|
resolvePanelUnitFromTargets(targets: any) {
|
|
let unit;
|
|
if (targets.length > 0 && targets.every((t: any) => t.unit === targets[0].unit)) {
|
|
if (cloudMonitoringUnitMappings.hasOwnProperty(targets[0].unit!)) {
|
|
// @ts-ignore
|
|
unit = cloudMonitoringUnitMappings[targets[0].unit];
|
|
}
|
|
}
|
|
return unit;
|
|
}
|
|
}
|