2019-10-17 05:38:09 -07:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
2019-10-28 07:02:42 -07:00
|
|
|
import { Alert, Button, Col, Nav, NavItem, NavLink, Row, TabContent, TabPane } from 'reactstrap';
|
2019-10-17 05:38:09 -07:00
|
|
|
|
|
|
|
import moment from 'moment-timezone';
|
|
|
|
|
|
|
|
import ExpressionInput from './ExpressionInput';
|
|
|
|
import GraphControls from './GraphControls';
|
|
|
|
import Graph from './Graph';
|
|
|
|
import DataTable from './DataTable';
|
|
|
|
import TimeInput from './TimeInput';
|
2019-10-23 03:47:37 -07:00
|
|
|
import QueryStatsView, { QueryStats } from './QueryStatsView';
|
2019-10-17 05:38:09 -07:00
|
|
|
|
|
|
|
interface PanelProps {
|
|
|
|
options: PanelOptions;
|
|
|
|
onOptionsChanged: (opts: PanelOptions) => void;
|
2019-10-26 10:50:22 -07:00
|
|
|
pastQueries: string[];
|
2019-10-17 05:38:09 -07:00
|
|
|
metricNames: string[];
|
|
|
|
removePanel: () => void;
|
2019-10-23 13:18:41 -07:00
|
|
|
onExecuteQuery: (query: string) => void;
|
2019-10-17 05:38:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
interface PanelState {
|
|
|
|
data: any; // TODO: Type data.
|
2019-10-28 07:02:42 -07:00
|
|
|
lastQueryParams: {
|
|
|
|
// TODO: Share these with Graph.tsx in a file.
|
|
|
|
startTime: number;
|
|
|
|
endTime: number;
|
|
|
|
resolution: number;
|
2019-10-17 05:38:09 -07:00
|
|
|
} | null;
|
|
|
|
loading: boolean;
|
|
|
|
error: string | null;
|
2019-10-28 07:02:42 -07:00
|
|
|
stats: QueryStats | null;
|
2019-10-17 05:38:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface PanelOptions {
|
|
|
|
expr: string;
|
|
|
|
type: PanelType;
|
|
|
|
range: number; // Range in seconds.
|
|
|
|
endTime: number | null; // Timestamp in milliseconds.
|
|
|
|
resolution: number | null; // Resolution in seconds.
|
|
|
|
stacked: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum PanelType {
|
|
|
|
Graph = 'graph',
|
|
|
|
Table = 'table',
|
|
|
|
}
|
|
|
|
|
|
|
|
export const PanelDefaultOptions: PanelOptions = {
|
|
|
|
type: PanelType.Table,
|
|
|
|
expr: '',
|
|
|
|
range: 3600,
|
|
|
|
endTime: null,
|
|
|
|
resolution: null,
|
|
|
|
stacked: false,
|
2019-10-28 07:02:42 -07:00
|
|
|
};
|
2019-10-17 05:38:09 -07:00
|
|
|
|
|
|
|
class Panel extends Component<PanelProps, PanelState> {
|
|
|
|
private abortInFlightFetch: (() => void) | null = null;
|
|
|
|
|
|
|
|
constructor(props: PanelProps) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
data: null,
|
|
|
|
lastQueryParams: null,
|
|
|
|
loading: false,
|
|
|
|
error: null,
|
|
|
|
stats: null,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate(prevProps: PanelProps, prevState: PanelState) {
|
|
|
|
const prevOpts = prevProps.options;
|
|
|
|
const opts = this.props.options;
|
2019-10-28 07:02:42 -07:00
|
|
|
if (
|
|
|
|
prevOpts.type !== opts.type ||
|
|
|
|
prevOpts.range !== opts.range ||
|
|
|
|
prevOpts.endTime !== opts.endTime ||
|
|
|
|
prevOpts.resolution !== opts.resolution
|
|
|
|
) {
|
2019-10-17 05:38:09 -07:00
|
|
|
if (prevOpts.type !== opts.type) {
|
|
|
|
// If the other options change, we still want to show the old data until the new
|
|
|
|
// query completes, but this is not a good idea when we actually change between
|
|
|
|
// table and graph view, since not all queries work well in both.
|
2019-10-28 07:02:42 -07:00
|
|
|
this.setState({ data: null });
|
2019-10-17 05:38:09 -07:00
|
|
|
}
|
|
|
|
this.executeQuery(opts.expr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
this.executeQuery(this.props.options.expr);
|
|
|
|
}
|
|
|
|
|
|
|
|
executeQuery = (expr: string): void => {
|
2019-10-23 03:47:37 -07:00
|
|
|
const queryStart = Date.now();
|
2019-10-28 07:02:42 -07:00
|
|
|
this.props.onExecuteQuery(expr);
|
2019-10-17 05:38:09 -07:00
|
|
|
if (this.props.options.expr !== expr) {
|
2019-10-28 07:02:42 -07:00
|
|
|
this.setOptions({ expr: expr });
|
2019-10-17 05:38:09 -07:00
|
|
|
}
|
|
|
|
if (expr === '') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.abortInFlightFetch) {
|
|
|
|
this.abortInFlightFetch();
|
|
|
|
this.abortInFlightFetch = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
const abortController = new AbortController();
|
|
|
|
this.abortInFlightFetch = () => abortController.abort();
|
2019-10-28 07:02:42 -07:00
|
|
|
this.setState({ loading: true });
|
2019-10-17 05:38:09 -07:00
|
|
|
|
|
|
|
const endTime = this.getEndTime().valueOf() / 1000; // TODO: shouldn't valueof only work when it's a moment?
|
|
|
|
const startTime = endTime - this.props.options.range;
|
|
|
|
const resolution = this.props.options.resolution || Math.max(Math.floor(this.props.options.range / 250), 1);
|
|
|
|
const url = new URL(window.location.href);
|
2019-10-28 07:02:42 -07:00
|
|
|
const params: { [key: string]: string } = {
|
|
|
|
query: expr,
|
2019-10-17 05:38:09 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
switch (this.props.options.type) {
|
|
|
|
case 'graph':
|
2019-10-28 07:02:42 -07:00
|
|
|
url.pathname = '../../api/v1/query_range';
|
2019-10-17 05:38:09 -07:00
|
|
|
Object.assign(params, {
|
|
|
|
start: startTime,
|
|
|
|
end: endTime,
|
|
|
|
step: resolution,
|
2019-10-28 07:02:42 -07:00
|
|
|
});
|
2019-10-17 05:38:09 -07:00
|
|
|
// TODO path prefix here and elsewhere.
|
|
|
|
break;
|
|
|
|
case 'table':
|
2019-10-28 07:02:42 -07:00
|
|
|
url.pathname = '../../api/v1/query';
|
2019-10-17 05:38:09 -07:00
|
|
|
Object.assign(params, {
|
|
|
|
time: endTime,
|
2019-10-28 07:02:42 -07:00
|
|
|
});
|
2019-10-17 05:38:09 -07:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new Error('Invalid panel type "' + this.props.options.type + '"');
|
|
|
|
}
|
2019-10-28 07:02:42 -07:00
|
|
|
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));
|
2019-10-17 05:38:09 -07:00
|
|
|
|
2019-10-28 07:02:42 -07:00
|
|
|
fetch(url.toString(), { cache: 'no-store', signal: abortController.signal })
|
|
|
|
.then(resp => resp.json())
|
|
|
|
.then(json => {
|
|
|
|
if (json.status !== 'success') {
|
|
|
|
throw new Error(json.error || 'invalid response JSON');
|
|
|
|
}
|
2019-10-17 05:38:09 -07:00
|
|
|
|
2019-10-28 07:02:42 -07:00
|
|
|
let resultSeries = 0;
|
|
|
|
if (json.data) {
|
|
|
|
const { resultType, result } = json.data;
|
|
|
|
if (resultType === 'scalar') {
|
|
|
|
resultSeries = 1;
|
|
|
|
} else if (result && result.length > 0) {
|
|
|
|
resultSeries = result.length;
|
|
|
|
}
|
2019-10-23 03:47:37 -07:00
|
|
|
}
|
|
|
|
|
2019-10-28 07:02:42 -07:00
|
|
|
this.setState({
|
|
|
|
error: null,
|
|
|
|
data: json.data,
|
|
|
|
lastQueryParams: {
|
|
|
|
startTime,
|
|
|
|
endTime,
|
|
|
|
resolution,
|
|
|
|
},
|
|
|
|
stats: {
|
|
|
|
loadTime: Date.now() - queryStart,
|
|
|
|
resolution,
|
|
|
|
resultSeries,
|
|
|
|
},
|
|
|
|
loading: false,
|
|
|
|
});
|
|
|
|
this.abortInFlightFetch = null;
|
2019-10-17 05:38:09 -07:00
|
|
|
})
|
2019-10-28 07:02:42 -07:00
|
|
|
.catch(error => {
|
|
|
|
if (error.name === 'AbortError') {
|
|
|
|
// Aborts are expected, don't show an error for them.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.setState({
|
|
|
|
error: 'Error executing query: ' + error.message,
|
|
|
|
loading: false,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
2019-10-17 05:38:09 -07:00
|
|
|
|
|
|
|
setOptions(opts: object): void {
|
2019-10-28 07:02:42 -07:00
|
|
|
const newOpts = { ...this.props.options, ...opts };
|
2019-10-17 05:38:09 -07:00
|
|
|
this.props.onOptionsChanged(newOpts);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleExpressionChange = (expr: string): void => {
|
2019-10-28 07:02:42 -07:00
|
|
|
this.setOptions({ expr: expr });
|
|
|
|
};
|
2019-10-17 05:38:09 -07:00
|
|
|
|
|
|
|
handleChangeRange = (range: number): void => {
|
2019-10-28 07:02:42 -07:00
|
|
|
this.setOptions({ range: range });
|
|
|
|
};
|
2019-10-17 05:38:09 -07:00
|
|
|
|
|
|
|
getEndTime = (): number | moment.Moment => {
|
|
|
|
if (this.props.options.endTime === null) {
|
|
|
|
return moment();
|
|
|
|
}
|
|
|
|
return this.props.options.endTime;
|
2019-10-28 07:02:42 -07:00
|
|
|
};
|
2019-10-17 05:38:09 -07:00
|
|
|
|
|
|
|
handleChangeEndTime = (endTime: number | null) => {
|
2019-10-28 07:02:42 -07:00
|
|
|
this.setOptions({ endTime: endTime });
|
|
|
|
};
|
2019-10-17 05:38:09 -07:00
|
|
|
|
|
|
|
handleChangeResolution = (resolution: number | null) => {
|
2019-10-28 07:02:42 -07:00
|
|
|
this.setOptions({ resolution: resolution });
|
|
|
|
};
|
2019-10-17 05:38:09 -07:00
|
|
|
|
|
|
|
handleChangeStacking = (stacked: boolean) => {
|
2019-10-28 07:02:42 -07:00
|
|
|
this.setOptions({ stacked: stacked });
|
|
|
|
};
|
2019-10-17 05:38:09 -07:00
|
|
|
|
|
|
|
render() {
|
2019-10-26 10:50:22 -07:00
|
|
|
const { pastQueries, metricNames, options } = this.props;
|
2019-10-17 05:38:09 -07:00
|
|
|
return (
|
|
|
|
<div className="panel">
|
|
|
|
<Row>
|
|
|
|
<Col>
|
|
|
|
<ExpressionInput
|
2019-10-26 10:50:22 -07:00
|
|
|
value={options.expr}
|
2019-10-17 05:38:09 -07:00
|
|
|
executeQuery={this.executeQuery}
|
|
|
|
loading={this.state.loading}
|
2019-10-26 10:50:22 -07:00
|
|
|
autocompleteSections={{
|
|
|
|
'Query History': pastQueries,
|
|
|
|
'Metric Names': metricNames,
|
|
|
|
}}
|
2019-10-17 05:38:09 -07:00
|
|
|
/>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
<Row>
|
2019-10-28 07:02:42 -07:00
|
|
|
<Col>{this.state.error && <Alert color="danger">{this.state.error}</Alert>}</Col>
|
2019-10-17 05:38:09 -07:00
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Col>
|
|
|
|
<Nav tabs>
|
|
|
|
<NavItem>
|
|
|
|
<NavLink
|
2019-10-26 10:50:22 -07:00
|
|
|
className={options.type === 'table' ? 'active' : ''}
|
2019-10-28 07:02:42 -07:00
|
|
|
onClick={() => {
|
|
|
|
this.setOptions({ type: 'table' });
|
|
|
|
}}
|
2019-10-17 05:38:09 -07:00
|
|
|
>
|
|
|
|
Table
|
|
|
|
</NavLink>
|
|
|
|
</NavItem>
|
|
|
|
<NavItem>
|
|
|
|
<NavLink
|
2019-10-26 10:50:22 -07:00
|
|
|
className={options.type === 'graph' ? 'active' : ''}
|
2019-10-28 07:02:42 -07:00
|
|
|
onClick={() => {
|
|
|
|
this.setOptions({ type: 'graph' });
|
|
|
|
}}
|
2019-10-17 05:38:09 -07:00
|
|
|
>
|
|
|
|
Graph
|
|
|
|
</NavLink>
|
|
|
|
</NavItem>
|
2019-10-28 07:02:42 -07:00
|
|
|
{!this.state.loading && !this.state.error && this.state.stats && <QueryStatsView {...this.state.stats} />}
|
2019-10-17 05:38:09 -07:00
|
|
|
</Nav>
|
2019-10-26 10:50:22 -07:00
|
|
|
<TabContent activeTab={options.type}>
|
2019-10-17 05:38:09 -07:00
|
|
|
<TabPane tabId="table">
|
2019-10-28 07:02:42 -07:00
|
|
|
{options.type === 'table' && (
|
2019-10-17 05:38:09 -07:00
|
|
|
<>
|
|
|
|
<div className="table-controls">
|
|
|
|
<TimeInput
|
2019-10-26 10:50:22 -07:00
|
|
|
time={options.endTime}
|
|
|
|
range={options.range}
|
2019-10-17 05:38:09 -07:00
|
|
|
placeholder="Evaluation time"
|
|
|
|
onChangeTime={this.handleChangeEndTime}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<DataTable data={this.state.data} />
|
|
|
|
</>
|
2019-10-28 07:02:42 -07:00
|
|
|
)}
|
2019-10-17 05:38:09 -07:00
|
|
|
</TabPane>
|
|
|
|
<TabPane tabId="graph">
|
2019-10-28 07:02:42 -07:00
|
|
|
{this.props.options.type === 'graph' && (
|
2019-10-17 05:38:09 -07:00
|
|
|
<>
|
|
|
|
<GraphControls
|
2019-10-26 10:50:22 -07:00
|
|
|
range={options.range}
|
|
|
|
endTime={options.endTime}
|
|
|
|
resolution={options.resolution}
|
|
|
|
stacked={options.stacked}
|
2019-10-17 05:38:09 -07:00
|
|
|
onChangeRange={this.handleChangeRange}
|
|
|
|
onChangeEndTime={this.handleChangeEndTime}
|
|
|
|
onChangeResolution={this.handleChangeResolution}
|
|
|
|
onChangeStacking={this.handleChangeStacking}
|
|
|
|
/>
|
2019-10-26 10:50:22 -07:00
|
|
|
<Graph data={this.state.data} stacked={options.stacked} queryParams={this.state.lastQueryParams} />
|
2019-10-17 05:38:09 -07:00
|
|
|
</>
|
2019-10-28 07:02:42 -07:00
|
|
|
)}
|
2019-10-17 05:38:09 -07:00
|
|
|
</TabPane>
|
|
|
|
</TabContent>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Col>
|
2019-10-28 07:02:42 -07:00
|
|
|
<Button className="float-right" color="link" onClick={this.props.removePanel} size="sm">
|
|
|
|
Remove Panel
|
|
|
|
</Button>
|
2019-10-17 05:38:09 -07:00
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Panel;
|