2018-10-14 14:14:11 -05:00
|
|
|
import React, { PureComponent } from 'react';
|
2018-11-20 09:33:26 -06:00
|
|
|
import DataSourceOption from './DataSourceOption';
|
2018-10-14 14:14:11 -05:00
|
|
|
import { getAngularLoader, AngularComponent } from 'app/core/services/AngularLoader';
|
2018-11-09 06:17:41 -06:00
|
|
|
import { EditorTabBody } from './EditorTabBody';
|
2018-11-09 08:49:55 -06:00
|
|
|
import { DataSourcePicker } from './DataSourcePicker';
|
2018-11-21 04:34:01 -06:00
|
|
|
import { JSONFormatter } from 'app/core/components/JSONFormatter/JSONFormatter';
|
2018-06-26 14:07:41 -05:00
|
|
|
import { PanelModel } from '../panel_model';
|
|
|
|
import { DashboardModel } from '../dashboard_model';
|
2018-11-16 01:31:29 -06:00
|
|
|
import './../../panel/metrics_tab';
|
2018-11-19 07:35:16 -06:00
|
|
|
import config from 'app/core/config';
|
|
|
|
|
|
|
|
// Services
|
|
|
|
import { getDatasourceSrv } from 'app/features/plugins/datasource_srv';
|
2018-11-20 07:17:03 -06:00
|
|
|
import { getBackendSrv, BackendSrv } from 'app/core/services/backend_srv';
|
2018-11-19 07:35:16 -06:00
|
|
|
import { DataSourceSelectItem } from 'app/types';
|
2018-11-21 07:03:27 -06:00
|
|
|
import appEvents from 'app/core/app_events';
|
2018-06-26 14:07:41 -05:00
|
|
|
|
2018-11-20 07:17:03 -06:00
|
|
|
import Remarkable from 'remarkable';
|
|
|
|
|
2018-06-26 14:07:41 -05:00
|
|
|
interface Props {
|
|
|
|
panel: PanelModel;
|
|
|
|
dashboard: DashboardModel;
|
|
|
|
}
|
|
|
|
|
2018-11-20 07:17:03 -06:00
|
|
|
interface Help {
|
|
|
|
isLoading: boolean;
|
|
|
|
helpHtml: any;
|
|
|
|
}
|
|
|
|
|
2018-11-19 07:35:16 -06:00
|
|
|
interface State {
|
|
|
|
currentDatasource: DataSourceSelectItem;
|
2018-11-20 07:17:03 -06:00
|
|
|
help: Help;
|
2018-11-21 07:03:27 -06:00
|
|
|
dsQuery: {};
|
2018-11-19 07:35:16 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
export class QueriesTab extends PureComponent<Props, State> {
|
2018-06-26 14:07:41 -05:00
|
|
|
element: any;
|
|
|
|
component: AngularComponent;
|
2018-11-19 07:35:16 -06:00
|
|
|
datasources: DataSourceSelectItem[] = getDatasourceSrv().getMetricSources();
|
2018-11-20 07:17:03 -06:00
|
|
|
backendSrv: BackendSrv = getBackendSrv();
|
2018-06-26 14:07:41 -05:00
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
2018-11-19 07:35:16 -06:00
|
|
|
const { panel } = props;
|
|
|
|
|
|
|
|
this.state = {
|
2018-11-21 07:03:27 -06:00
|
|
|
dsQuery: {},
|
2018-11-19 07:35:16 -06:00
|
|
|
currentDatasource: this.datasources.find(datasource => datasource.value === panel.datasource),
|
2018-11-20 07:17:03 -06:00
|
|
|
help: {
|
|
|
|
isLoading: false,
|
|
|
|
helpHtml: null,
|
|
|
|
},
|
2018-11-19 07:35:16 -06:00
|
|
|
};
|
2018-11-21 07:03:27 -06:00
|
|
|
appEvents.on('ds-request-response', this.onDataSourceResponse);
|
2018-06-26 14:07:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
if (!this.element) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-14 04:13:04 -05:00
|
|
|
const { panel, dashboard } = this.props;
|
2018-09-10 08:42:36 -05:00
|
|
|
const loader = getAngularLoader();
|
|
|
|
const template = '<metrics-tab />';
|
|
|
|
const scopeProps = {
|
2018-06-26 14:07:41 -05:00
|
|
|
ctrl: {
|
2018-10-14 04:13:04 -05:00
|
|
|
panel: panel,
|
|
|
|
dashboard: dashboard,
|
2018-10-14 14:14:11 -05:00
|
|
|
refresh: () => panel.refresh(),
|
2018-06-26 14:07:41 -05:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
this.component = loader.load(this.element, scopeProps, template);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
2018-11-21 07:03:27 -06:00
|
|
|
appEvents.off('ds-request-response', this.onDataSourceResponse);
|
|
|
|
|
2018-06-26 14:07:41 -05:00
|
|
|
if (this.component) {
|
|
|
|
this.component.destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-21 07:03:27 -06:00
|
|
|
onDataSourceResponse = (response: any = {}) => {
|
|
|
|
// ignore if closed
|
|
|
|
// if (!this.isOpen) {
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// if (this.isMocking) {
|
|
|
|
// this.handleMocking(data);
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// this.isLoading = false;
|
|
|
|
// data = _.cloneDeep(data);
|
|
|
|
|
|
|
|
if (response.headers) {
|
|
|
|
delete response.headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (response.config) {
|
|
|
|
response.request = response.config;
|
|
|
|
delete response.config;
|
|
|
|
delete response.request.transformRequest;
|
|
|
|
delete response.request.transformResponse;
|
|
|
|
delete response.request.paramSerializer;
|
|
|
|
delete response.request.jsonpCallbackParam;
|
|
|
|
delete response.request.headers;
|
|
|
|
delete response.request.requestId;
|
|
|
|
delete response.request.inspect;
|
|
|
|
delete response.request.retry;
|
|
|
|
delete response.request.timeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (response.data) {
|
|
|
|
response.response = response.data;
|
|
|
|
|
|
|
|
// if (response.status === 200) {
|
|
|
|
// // if we are in error state, assume we automatically opened
|
|
|
|
// // and auto close it again
|
|
|
|
// if (this.hasError) {
|
|
|
|
// this.hasError = false;
|
|
|
|
// this.isOpen = false;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
delete response.data;
|
|
|
|
delete response.status;
|
|
|
|
delete response.statusText;
|
|
|
|
delete response.$$config;
|
|
|
|
}
|
|
|
|
this.setState(prevState => ({
|
|
|
|
...prevState,
|
|
|
|
dsQuery: response,
|
|
|
|
}));
|
|
|
|
};
|
|
|
|
|
2018-11-19 07:35:16 -06:00
|
|
|
onChangeDataSource = datasource => {
|
|
|
|
const { panel } = this.props;
|
|
|
|
const { currentDatasource } = this.state;
|
|
|
|
// switching to mixed
|
|
|
|
if (datasource.meta.mixed) {
|
|
|
|
panel.targets.forEach(target => {
|
|
|
|
target.datasource = panel.datasource;
|
|
|
|
if (!target.datasource) {
|
|
|
|
target.datasource = config.defaultDatasource;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else if (currentDatasource && currentDatasource.meta.mixed) {
|
|
|
|
panel.targets.forEach(target => {
|
|
|
|
delete target.datasource;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
panel.datasource = datasource.value;
|
|
|
|
panel.refresh();
|
|
|
|
|
|
|
|
this.setState(prevState => ({
|
|
|
|
...prevState,
|
|
|
|
currentDatasource: datasource,
|
|
|
|
}));
|
2018-11-20 07:17:03 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
loadHelp = () => {
|
|
|
|
const { currentDatasource } = this.state;
|
|
|
|
const hasHelp = currentDatasource.meta.hasQueryHelp;
|
|
|
|
|
|
|
|
if (hasHelp) {
|
|
|
|
this.setState(prevState => ({
|
|
|
|
...prevState,
|
|
|
|
help: {
|
|
|
|
helpHtml: <h2>Loading help...</h2>,
|
|
|
|
isLoading: true,
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
|
|
|
|
this.backendSrv
|
|
|
|
.get(`/api/plugins/${currentDatasource.meta.id}/markdown/query_help`)
|
|
|
|
.then(res => {
|
|
|
|
const md = new Remarkable();
|
|
|
|
const helpHtml = md.render(res); // TODO: Clean out dangerous code? Previous: this.helpHtml = this.$sce.trustAsHtml(md.render(res));
|
|
|
|
this.setState(prevState => ({
|
|
|
|
...prevState,
|
|
|
|
help: {
|
|
|
|
helpHtml: <div className="markdown-html" dangerouslySetInnerHTML={{ __html: helpHtml }} />,
|
|
|
|
isLoading: false,
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
this.setState(prevState => ({
|
|
|
|
...prevState,
|
|
|
|
help: {
|
|
|
|
helpHtml: 'Error occured when loading help',
|
|
|
|
isLoading: false,
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
}
|
2018-11-19 07:35:16 -06:00
|
|
|
};
|
|
|
|
|
2018-11-20 09:33:26 -06:00
|
|
|
renderOptions = close => {
|
|
|
|
const { currentDatasource } = this.state;
|
|
|
|
const { queryOptions } = currentDatasource.meta;
|
|
|
|
const { panel } = this.props;
|
|
|
|
|
|
|
|
const onChangeFn = (panelKey: string) => {
|
|
|
|
return (value: string | number) => {
|
|
|
|
panel[panelKey] = value;
|
|
|
|
panel.refresh();
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const allOptions = {
|
|
|
|
cacheTimeout: {
|
|
|
|
label: 'Cache timeout',
|
|
|
|
placeholder: '60',
|
|
|
|
name: 'cacheTimeout',
|
|
|
|
value: panel.cacheTimeout,
|
|
|
|
tooltipInfo: (
|
|
|
|
<>
|
|
|
|
If your time series store has a query cache this option can override the default cache timeout. Specify a
|
|
|
|
numeric value in seconds.
|
|
|
|
</>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
maxDataPoints: {
|
|
|
|
label: 'Max data points',
|
|
|
|
placeholder: 'auto',
|
|
|
|
name: 'maxDataPoints',
|
|
|
|
value: panel.maxDataPoints,
|
|
|
|
tooltipInfo: (
|
|
|
|
<>
|
|
|
|
The maximum data points the query should return. For graphs this is automatically set to one data point per
|
|
|
|
pixel.
|
|
|
|
</>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
minInterval: {
|
|
|
|
label: 'Min time interval',
|
|
|
|
placeholder: '0',
|
|
|
|
name: 'minInterval',
|
|
|
|
value: panel.interval,
|
|
|
|
panelKey: 'interval',
|
|
|
|
tooltipInfo: (
|
|
|
|
<>
|
|
|
|
A lower limit for the auto group by time interval. Recommended to be set to write frequency, for example{' '}
|
|
|
|
<code>1m</code> if your data is written every minute. Access auto interval via variable{' '}
|
|
|
|
<code>$__interval</code> for time range string and <code>$__interval_ms</code> for numeric variable that can
|
|
|
|
be used in math expressions.
|
|
|
|
</>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
return Object.keys(queryOptions).map(key => {
|
|
|
|
const options = allOptions[key];
|
|
|
|
return <DataSourceOption key={key} {...options} onChange={onChangeFn(allOptions[key].panelKey || key)} />;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-11-21 04:34:01 -06:00
|
|
|
renderQueryInspector = () => {
|
2018-11-21 07:03:27 -06:00
|
|
|
const { dsQuery } = this.state;
|
|
|
|
return <JSONFormatter json={dsQuery} />;
|
2018-11-21 04:34:01 -06:00
|
|
|
};
|
|
|
|
|
2018-06-26 14:07:41 -05:00
|
|
|
render() {
|
2018-11-19 07:35:16 -06:00
|
|
|
const { currentDatasource } = this.state;
|
2018-11-20 07:17:03 -06:00
|
|
|
const { helpHtml } = this.state.help;
|
2018-11-20 09:33:26 -06:00
|
|
|
const { hasQueryHelp, queryOptions } = currentDatasource.meta;
|
|
|
|
const hasQueryOptions = !!queryOptions;
|
2018-11-19 07:35:16 -06:00
|
|
|
const dsInformation = {
|
|
|
|
title: currentDatasource.name,
|
|
|
|
imgSrc: currentDatasource.meta.info.logos.small,
|
|
|
|
render: closeOpenView => (
|
|
|
|
<DataSourcePicker
|
|
|
|
datasources={this.datasources}
|
|
|
|
onChangeDataSource={ds => {
|
|
|
|
closeOpenView();
|
|
|
|
this.onChangeDataSource(ds);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
),
|
2018-11-09 08:49:55 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
const queryInspector = {
|
|
|
|
title: 'Query Inspector',
|
2018-11-21 04:34:01 -06:00
|
|
|
render: this.renderQueryInspector,
|
2018-11-09 08:49:55 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
const dsHelp = {
|
2018-11-09 13:33:33 -06:00
|
|
|
title: '',
|
2018-11-09 08:49:55 -06:00
|
|
|
icon: 'fa fa-question',
|
2018-11-20 07:17:03 -06:00
|
|
|
disabled: !hasQueryHelp,
|
|
|
|
onClick: this.loadHelp,
|
|
|
|
render: () => helpHtml,
|
2018-11-09 06:17:41 -06:00
|
|
|
};
|
|
|
|
|
2018-11-20 09:33:26 -06:00
|
|
|
const options = {
|
2018-11-21 04:34:01 -06:00
|
|
|
title: '',
|
|
|
|
icon: 'fa fa-cog',
|
2018-11-20 09:33:26 -06:00
|
|
|
disabled: !hasQueryOptions,
|
|
|
|
render: this.renderOptions,
|
|
|
|
};
|
|
|
|
|
2018-11-09 06:17:41 -06:00
|
|
|
return (
|
2018-11-22 05:19:52 -06:00
|
|
|
<EditorTabBody heading="Queries" main={dsInformation} toolbarItems={[options, queryInspector, dsHelp]}>
|
2018-11-09 06:17:41 -06:00
|
|
|
<div ref={element => (this.element = element)} style={{ width: '100%' }} />
|
|
|
|
</EditorTabBody>
|
|
|
|
);
|
2018-06-26 14:07:41 -05:00
|
|
|
}
|
|
|
|
}
|