mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
139 lines
5.1 KiB
TypeScript
139 lines
5.1 KiB
TypeScript
import React, { PureComponent } from 'react';
|
|
import {
|
|
DataSourcePluginOptionsEditorProps,
|
|
SelectableValue,
|
|
onUpdateDatasourceOption,
|
|
updateDatasourcePluginResetOption,
|
|
onUpdateDatasourceJsonDataOption,
|
|
onUpdateDatasourceJsonDataOptionSelect,
|
|
onUpdateDatasourceSecureJsonDataOption,
|
|
} from '@grafana/data';
|
|
import { DataSourceHttpSettings, FormLabel, SecretFormField, LegacyForms } from '@grafana/ui';
|
|
const { Select, Input } = LegacyForms;
|
|
import { InfluxOptions, InfluxSecureJsonData } from '../types';
|
|
|
|
const httpModes = [
|
|
{ label: 'GET', value: 'GET' },
|
|
{ label: 'POST', value: 'POST' },
|
|
] as SelectableValue[];
|
|
|
|
export type Props = DataSourcePluginOptionsEditorProps<InfluxOptions>;
|
|
|
|
export class ConfigEditor extends PureComponent<Props> {
|
|
onResetPassword = () => {
|
|
updateDatasourcePluginResetOption(this.props, 'password');
|
|
};
|
|
|
|
render() {
|
|
const { options, onOptionsChange } = this.props;
|
|
const { secureJsonFields } = options;
|
|
const secureJsonData = (options.secureJsonData || {}) as InfluxSecureJsonData;
|
|
return (
|
|
<>
|
|
<DataSourceHttpSettings
|
|
showAccessOptions={true}
|
|
dataSourceConfig={options}
|
|
defaultUrl="http://localhost:8086"
|
|
onChange={onOptionsChange}
|
|
/>
|
|
|
|
<h3 className="page-heading">InfluxDB Details</h3>
|
|
<div className="gf-form-group">
|
|
<div className="gf-form-inline">
|
|
<div className="gf-form">
|
|
<FormLabel className="width-10">Database</FormLabel>
|
|
<div className="width-20">
|
|
<Input
|
|
className="width-20"
|
|
value={options.database || ''}
|
|
onChange={onUpdateDatasourceOption(this.props, 'database')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="gf-form-inline">
|
|
<div className="gf-form">
|
|
<FormLabel className="width-10">User</FormLabel>
|
|
<div className="width-10">
|
|
<Input
|
|
className="width-20"
|
|
value={options.user || ''}
|
|
onChange={onUpdateDatasourceOption(this.props, 'user')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="gf-form-inline">
|
|
<div className="gf-form">
|
|
<SecretFormField
|
|
isConfigured={(secureJsonFields && secureJsonFields.password) as boolean}
|
|
value={secureJsonData.password || ''}
|
|
label="Password"
|
|
labelWidth={10}
|
|
inputWidth={20}
|
|
onReset={this.onResetPassword}
|
|
onChange={onUpdateDatasourceSecureJsonDataOption(this.props, 'password')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="gf-form-inline">
|
|
<div className="gf-form">
|
|
<FormLabel
|
|
className="width-10"
|
|
tooltip="You can use either GET or POST HTTP method to query your InfluxDB database. The POST
|
|
method allows you to perform heavy requests (with a lots of WHERE clause) while the GET method
|
|
will restrict you and return an error if the query is too large."
|
|
>
|
|
HTTP Method
|
|
</FormLabel>
|
|
<Select
|
|
className="width-10"
|
|
value={httpModes.find(httpMode => httpMode.value === options.jsonData.httpMode)}
|
|
options={httpModes}
|
|
defaultValue={options.jsonData.httpMode}
|
|
onChange={onUpdateDatasourceJsonDataOptionSelect(this.props, 'httpMode')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="gf-form-group">
|
|
<div className="grafana-info-box">
|
|
<h5>Database Access</h5>
|
|
<p>
|
|
Setting the database for this datasource does not deny access to other databases. The InfluxDB query
|
|
syntax allows switching the database in the query. For example:
|
|
<code>SHOW MEASUREMENTS ON _internal</code> or <code>SELECT * FROM "_internal".."database" LIMIT 10</code>
|
|
<br />
|
|
<br />
|
|
To support data isolation and security, make sure appropriate permissions are configured in InfluxDB.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className="gf-form-group">
|
|
<div className="gf-form-inline">
|
|
<div className="gf-form">
|
|
<FormLabel
|
|
className="width-10"
|
|
tooltip="A lower limit for the auto group by time interval. Recommended to be set to write frequency,
|
|
for example 1m if your data is written every minute."
|
|
>
|
|
Min time interval
|
|
</FormLabel>
|
|
<div className="width-10">
|
|
<Input
|
|
className="width-10"
|
|
placeholder="10s"
|
|
value={options.jsonData.timeInterval || ''}
|
|
onChange={onUpdateDatasourceJsonDataOption(this.props, 'timeInterval')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default ConfigEditor;
|