2018-12-13 07:28:44 -06:00
|
|
|
// Libraries
|
|
|
|
import React, { PureComponent } from 'react';
|
|
|
|
|
|
|
|
// Utils
|
|
|
|
import { isValidTimeSpan } from 'app/core/utils/rangeutil';
|
|
|
|
|
|
|
|
// Components
|
2019-01-24 08:35:50 -06:00
|
|
|
import { Switch } from '@grafana/ui';
|
2018-12-13 07:28:44 -06:00
|
|
|
import { Input } from 'app/core/components/Form';
|
|
|
|
import { EventsWithValidation } from 'app/core/components/Form/Input';
|
|
|
|
import { InputStatus } from 'app/core/components/Form/Input';
|
|
|
|
import DataSourceOption from './DataSourceOption';
|
2019-01-16 07:46:57 -06:00
|
|
|
import { FormLabel } from '@grafana/ui';
|
2018-12-13 07:28:44 -06:00
|
|
|
|
|
|
|
// Types
|
2019-01-31 01:56:17 -06:00
|
|
|
import { PanelModel } from '../state/PanelModel';
|
2019-01-17 11:51:07 -06:00
|
|
|
import { DataSourceSelectItem } from '@grafana/ui/src/types';
|
|
|
|
import { ValidationEvents } from 'app/types';
|
2018-12-13 07:28:44 -06:00
|
|
|
|
|
|
|
const timeRangeValidationEvents: ValidationEvents = {
|
|
|
|
[EventsWithValidation.onBlur]: [
|
|
|
|
{
|
|
|
|
rule: value => {
|
|
|
|
if (!value) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return isValidTimeSpan(value);
|
|
|
|
},
|
|
|
|
errorMessage: 'Not a valid timespan',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
const emptyToNull = (value: string) => {
|
|
|
|
return value === '' ? null : value;
|
|
|
|
};
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
panel: PanelModel;
|
|
|
|
datasource: DataSourceSelectItem;
|
|
|
|
}
|
|
|
|
|
2018-12-18 09:39:59 -06:00
|
|
|
interface State {
|
|
|
|
relativeTime: string;
|
|
|
|
timeShift: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class QueryOptions extends PureComponent<Props, State> {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
relativeTime: props.panel.timeFrom || '',
|
|
|
|
timeShift: props.panel.timeShift || '',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
onRelativeTimeChange = event => {
|
|
|
|
this.setState({
|
|
|
|
relativeTime: event.target.value,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
onTimeShiftChange = event => {
|
|
|
|
this.setState({
|
|
|
|
timeShift: event.target.value,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-12-13 07:28:44 -06:00
|
|
|
onOverrideTime = (evt, status: InputStatus) => {
|
|
|
|
const { value } = evt.target;
|
|
|
|
const { panel } = this.props;
|
|
|
|
const emptyToNullValue = emptyToNull(value);
|
|
|
|
if (status === InputStatus.Valid && panel.timeFrom !== emptyToNullValue) {
|
|
|
|
panel.timeFrom = emptyToNullValue;
|
|
|
|
panel.refresh();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
onTimeShift = (evt, status: InputStatus) => {
|
|
|
|
const { value } = evt.target;
|
|
|
|
const { panel } = this.props;
|
|
|
|
const emptyToNullValue = emptyToNull(value);
|
|
|
|
if (status === InputStatus.Valid && panel.timeShift !== emptyToNullValue) {
|
|
|
|
panel.timeShift = emptyToNullValue;
|
|
|
|
panel.refresh();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
onToggleTimeOverride = () => {
|
|
|
|
const { panel } = this.props;
|
|
|
|
panel.hideTimeOverride = !panel.hideTimeOverride;
|
|
|
|
panel.refresh();
|
|
|
|
};
|
|
|
|
|
|
|
|
renderOptions() {
|
|
|
|
const { datasource, panel } = this.props;
|
2019-01-08 08:54:12 -06:00
|
|
|
const { queryOptions } = datasource.meta;
|
2018-12-13 07:28:44 -06:00
|
|
|
|
|
|
|
if (!queryOptions) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
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-12-18 09:39:59 -06:00
|
|
|
render() {
|
2018-12-13 07:28:44 -06:00
|
|
|
const hideTimeOverride = this.props.panel.hideTimeOverride;
|
2018-12-18 09:39:59 -06:00
|
|
|
const { relativeTime, timeShift } = this.state;
|
|
|
|
|
2018-12-13 07:28:44 -06:00
|
|
|
return (
|
|
|
|
<div className="gf-form-inline">
|
|
|
|
{this.renderOptions()}
|
|
|
|
|
|
|
|
<div className="gf-form">
|
2019-01-16 07:46:57 -06:00
|
|
|
<FormLabel>Relative time</FormLabel>
|
2018-12-13 07:28:44 -06:00
|
|
|
<Input
|
|
|
|
type="text"
|
|
|
|
className="width-6"
|
|
|
|
placeholder="1h"
|
2018-12-18 09:39:59 -06:00
|
|
|
onChange={this.onRelativeTimeChange}
|
2018-12-13 07:28:44 -06:00
|
|
|
onBlur={this.onOverrideTime}
|
|
|
|
validationEvents={timeRangeValidationEvents}
|
|
|
|
hideErrorMessage={true}
|
2018-12-18 09:39:59 -06:00
|
|
|
value={relativeTime}
|
2018-12-13 07:28:44 -06:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="gf-form">
|
|
|
|
<span className="gf-form-label">Time shift</span>
|
|
|
|
<Input
|
|
|
|
type="text"
|
|
|
|
className="width-6"
|
|
|
|
placeholder="1h"
|
2018-12-18 09:39:59 -06:00
|
|
|
onChange={this.onTimeShiftChange}
|
2018-12-13 07:28:44 -06:00
|
|
|
onBlur={this.onTimeShift}
|
|
|
|
validationEvents={timeRangeValidationEvents}
|
|
|
|
hideErrorMessage={true}
|
2018-12-18 09:39:59 -06:00
|
|
|
value={timeShift}
|
2018-12-13 07:28:44 -06:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="gf-form-inline">
|
|
|
|
<Switch label="Hide time info" checked={hideTimeOverride} onChange={this.onToggleTimeOverride} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2018-12-18 09:39:59 -06:00
|
|
|
}
|
2018-12-13 07:28:44 -06:00
|
|
|
}
|