mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* migrate metric queries * restructure migrations * self review * cleanup tests * ensure alias is not changed * apply pr feedback
153 lines
4.8 KiB
TypeScript
153 lines
4.8 KiB
TypeScript
import { from, Observable } from 'rxjs';
|
|
import { map } from 'rxjs/operators';
|
|
|
|
import { CustomVariableSupport, DataQueryRequest, DataQueryResponse } from '@grafana/data';
|
|
|
|
import { VariableQueryEditor } from './components/VariableQueryEditor/VariableQueryEditor';
|
|
import { CloudWatchDatasource } from './datasource';
|
|
import { migrateVariableQuery } from './migrations/variableQueryMigrations';
|
|
import { VariableQuery, VariableQueryType } from './types';
|
|
|
|
export class CloudWatchVariableSupport extends CustomVariableSupport<CloudWatchDatasource, VariableQuery> {
|
|
private readonly datasource: CloudWatchDatasource;
|
|
|
|
constructor(datasource: CloudWatchDatasource) {
|
|
super();
|
|
this.datasource = datasource;
|
|
this.query = this.query.bind(this);
|
|
}
|
|
|
|
editor = VariableQueryEditor;
|
|
|
|
query(request: DataQueryRequest<VariableQuery>): Observable<DataQueryResponse> {
|
|
const queryObj = migrateVariableQuery(request.targets[0]);
|
|
return from(this.execute(queryObj)).pipe(map((data) => ({ data })));
|
|
}
|
|
|
|
async execute(query: VariableQuery) {
|
|
try {
|
|
switch (query.queryType) {
|
|
case VariableQueryType.Regions:
|
|
return this.handleRegionsQuery();
|
|
case VariableQueryType.Namespaces:
|
|
return this.handleNamespacesQuery();
|
|
case VariableQueryType.Metrics:
|
|
return this.handleMetricsQuery(query);
|
|
case VariableQueryType.DimensionKeys:
|
|
return this.handleDimensionKeysQuery(query);
|
|
case VariableQueryType.DimensionValues:
|
|
return this.handleDimensionValuesQuery(query);
|
|
case VariableQueryType.EBSVolumeIDs:
|
|
return this.handleEbsVolumeIdsQuery(query);
|
|
case VariableQueryType.EC2InstanceAttributes:
|
|
return this.handleEc2InstanceAttributeQuery(query);
|
|
case VariableQueryType.ResourceArns:
|
|
return this.handleResourceARNsQuery(query);
|
|
case VariableQueryType.Statistics:
|
|
return this.handleStatisticsQuery();
|
|
}
|
|
} catch (error) {
|
|
console.error(`Could not run CloudWatchMetricFindQuery ${query}`, error);
|
|
return [];
|
|
}
|
|
}
|
|
|
|
async handleRegionsQuery() {
|
|
const regions = await this.datasource.getRegions();
|
|
return regions.map((s: { label: string; value: string }) => ({
|
|
text: s.label,
|
|
value: s.value,
|
|
expandable: true,
|
|
}));
|
|
}
|
|
|
|
async handleNamespacesQuery() {
|
|
const namespaces = await this.datasource.getNamespaces();
|
|
return namespaces.map((s: { label: string; value: string }) => ({
|
|
text: s.label,
|
|
value: s.value,
|
|
expandable: true,
|
|
}));
|
|
}
|
|
|
|
async handleMetricsQuery({ namespace, region }: VariableQuery) {
|
|
const metrics = await this.datasource.getMetrics(namespace, region);
|
|
return metrics.map((s: { label: string; value: string }) => ({
|
|
text: s.label,
|
|
value: s.value,
|
|
expandable: true,
|
|
}));
|
|
}
|
|
|
|
async handleDimensionKeysQuery({ namespace, region }: VariableQuery) {
|
|
const keys = await this.datasource.getDimensionKeys(namespace, region);
|
|
return keys.map((s: { label: string; value: string }) => ({
|
|
text: s.label,
|
|
value: s.value,
|
|
expandable: true,
|
|
}));
|
|
}
|
|
|
|
async handleDimensionValuesQuery({ namespace, region, dimensionKey, metricName, dimensionFilters }: VariableQuery) {
|
|
if (!dimensionKey || !metricName) {
|
|
return [];
|
|
}
|
|
const keys = await this.datasource.getDimensionValues(
|
|
region,
|
|
namespace,
|
|
metricName,
|
|
dimensionKey,
|
|
dimensionFilters ?? {}
|
|
);
|
|
return keys.map((s: { label: string; value: string }) => ({
|
|
text: s.label,
|
|
value: s.value,
|
|
expandable: true,
|
|
}));
|
|
}
|
|
|
|
async handleEbsVolumeIdsQuery({ region, instanceID }: VariableQuery) {
|
|
if (!instanceID) {
|
|
return [];
|
|
}
|
|
const ids = await this.datasource.getEbsVolumeIds(region, instanceID);
|
|
return ids.map((s: { label: string; value: string }) => ({
|
|
text: s.label,
|
|
value: s.value,
|
|
expandable: true,
|
|
}));
|
|
}
|
|
|
|
async handleEc2InstanceAttributeQuery({ region, attributeName, ec2Filters }: VariableQuery) {
|
|
if (!attributeName) {
|
|
return [];
|
|
}
|
|
const values = await this.datasource.getEc2InstanceAttribute(region, attributeName, ec2Filters ?? {});
|
|
return values.map((s: { label: string; value: string }) => ({
|
|
text: s.label,
|
|
value: s.value,
|
|
expandable: true,
|
|
}));
|
|
}
|
|
|
|
async handleResourceARNsQuery({ region, resourceType, tags }: VariableQuery) {
|
|
if (!resourceType) {
|
|
return [];
|
|
}
|
|
const keys = await this.datasource.getResourceARNs(region, resourceType, tags ?? {});
|
|
return keys.map((s: { label: string; value: string }) => ({
|
|
text: s.label,
|
|
value: s.value,
|
|
expandable: true,
|
|
}));
|
|
}
|
|
|
|
async handleStatisticsQuery() {
|
|
return this.datasource.standardStatistics.map((s: string) => ({
|
|
text: s,
|
|
value: s,
|
|
expandable: true,
|
|
}));
|
|
}
|
|
}
|