The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/features/dashboard/components/PanelEditor/PanelEditorQueries.tsx

76 lines
2.0 KiB

import React, { PureComponent } from 'react';
import { QueryGroup } from 'app/features/query/components/QueryGroup';
import { PanelModel } from '../../state';
import { getLocationSrv } from '@grafana/runtime';
import { QueryGroupOptions } from 'app/types';
import { DataQuery } from '@grafana/data';
interface Props {
/** Current panel */
panel: PanelModel;
/** Added here to make component re-render when queries change from outside */
queries: DataQuery[];
}
export class PanelEditorQueries extends PureComponent<Props> {
constructor(props: Props) {
super(props);
}
buildQueryOptions(panel: PanelModel): QueryGroupOptions {
return {
dataSource: {
name: panel.datasource,
},
queries: panel.targets,
maxDataPoints: panel.maxDataPoints,
minInterval: panel.interval,
timeRange: {
from: panel.timeFrom,
shift: panel.timeShift,
hide: panel.hideTimeOverride,
},
};
}
onRunQueries = () => {
this.props.panel.refresh();
};
onOpenQueryInspector = () => {
getLocationSrv().update({
query: { inspect: this.props.panel.id, inspectTab: 'query' },
partial: true,
});
};
onOptionsChange = (options: QueryGroupOptions) => {
const { panel } = this.props;
const newDataSourceName = options.dataSource.default ? null : options.dataSource.name!;
const dataSourceChanged = newDataSourceName !== panel.datasource;
panel.updateQueries(options);
if (dataSourceChanged) {
// trigger queries when changing data source
setTimeout(this.onRunQueries, 10);
}
this.forceUpdate();
};
render() {
const { panel } = this.props;
const options = this.buildQueryOptions(panel);
return (
<QueryGroup
options={options}
queryRunner={panel.getQueryRunner()}
onRunQueries={this.onRunQueries}
onOpenQueryInspector={this.onOpenQueryInspector}
onOptionsChange={this.onOptionsChange}
/>
);
}
}