mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
284 lines
9.9 KiB
TypeScript
284 lines
9.9 KiB
TypeScript
import React, { PureComponent } from 'react';
|
|
import { FormLabel, Select, Input, Button } from '@grafana/ui';
|
|
import {
|
|
DataSourcePluginOptionsEditorProps,
|
|
onUpdateDatasourceJsonDataOptionSelect,
|
|
onUpdateDatasourceOption,
|
|
onUpdateDatasourceResetOption,
|
|
onUpdateDatasourceJsonDataOption,
|
|
onUpdateDatasourceSecureJsonDataOption,
|
|
} from '@grafana/data';
|
|
import { SelectableValue } from '@grafana/data';
|
|
import { getDatasourceSrv } from 'app/features/plugins/datasource_srv';
|
|
import CloudWatchDatasource from '../datasource';
|
|
import { CloudWatchJsonData, CloudWatchSecureJsonData } from '../types';
|
|
import { CancelablePromise, makePromiseCancelable } from 'app/core/utils/CancelablePromise';
|
|
|
|
const authProviderOptions = [
|
|
{ label: 'Access & secret key', value: 'keys' },
|
|
{ label: 'Credentials file', value: 'credentials' },
|
|
{ label: 'ARN', value: 'arn' },
|
|
] as SelectableValue[];
|
|
|
|
export type Props = DataSourcePluginOptionsEditorProps<CloudWatchJsonData, CloudWatchSecureJsonData>;
|
|
|
|
export interface State {
|
|
regions: SelectableValue[];
|
|
}
|
|
|
|
export class ConfigEditor extends PureComponent<Props, State> {
|
|
constructor(props: Props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
regions: [],
|
|
};
|
|
}
|
|
|
|
loadRegionsPromise: CancelablePromise<any> = null;
|
|
|
|
componentDidMount() {
|
|
this.loadRegionsPromise = makePromiseCancelable(this.loadRegions());
|
|
this.loadRegionsPromise.promise.catch(({ isCanceled }) => {
|
|
if (isCanceled) {
|
|
console.warn('Cloud Watch ConfigEditor has unmounted, intialization was canceled');
|
|
}
|
|
});
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
if (this.loadRegionsPromise) {
|
|
this.loadRegionsPromise.cancel();
|
|
}
|
|
}
|
|
|
|
async loadRegions() {
|
|
await getDatasourceSrv()
|
|
.loadDatasource(this.props.options.name)
|
|
.then((ds: CloudWatchDatasource) => {
|
|
return ds.getRegions();
|
|
})
|
|
.then(
|
|
(regions: any) => {
|
|
this.setState({
|
|
regions: regions.map((region: any) => {
|
|
return {
|
|
value: region.value,
|
|
label: region.text,
|
|
};
|
|
}),
|
|
});
|
|
},
|
|
(err: any) => {
|
|
const regions = [
|
|
'ap-east-1',
|
|
'ap-northeast-1',
|
|
'ap-northeast-2',
|
|
'ap-northeast-3',
|
|
'ap-south-1',
|
|
'ap-southeast-1',
|
|
'ap-southeast-2',
|
|
'ca-central-1',
|
|
'cn-north-1',
|
|
'cn-northwest-1',
|
|
'eu-central-1',
|
|
'eu-north-1',
|
|
'eu-west-1',
|
|
'eu-west-2',
|
|
'eu-west-3',
|
|
'me-south-1',
|
|
'sa-east-1',
|
|
'us-east-1',
|
|
'us-east-2',
|
|
'us-gov-east-1',
|
|
'us-gov-west-1',
|
|
'us-iso-east-1',
|
|
'us-isob-east-1',
|
|
'us-west-1',
|
|
'us-west-2',
|
|
];
|
|
|
|
this.setState({
|
|
regions: regions.map((region: string) => {
|
|
return {
|
|
value: region,
|
|
label: region,
|
|
};
|
|
}),
|
|
});
|
|
|
|
// expected to fail when creating new datasource
|
|
// console.error('failed to get latest regions', err);
|
|
}
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const { regions } = this.state;
|
|
const { options } = this.props;
|
|
const secureJsonData = (options.secureJsonData || {}) as CloudWatchSecureJsonData;
|
|
|
|
return (
|
|
<>
|
|
<h3 className="page-heading">CloudWatch Details</h3>
|
|
<div className="gf-form-group">
|
|
<div className="gf-form-inline">
|
|
<div className="gf-form">
|
|
<FormLabel className="width-14">Auth Provider</FormLabel>
|
|
<Select
|
|
className="width-30"
|
|
value={authProviderOptions.find(authProvider => authProvider.value === options.jsonData.authType)}
|
|
options={authProviderOptions}
|
|
defaultValue={options.jsonData.authType}
|
|
onChange={option => {
|
|
if (options.jsonData.authType === 'arn' && option.value !== 'arn') {
|
|
delete this.props.options.jsonData.assumeRoleArn;
|
|
}
|
|
onUpdateDatasourceJsonDataOptionSelect(this.props, 'authType')(option);
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
{options.jsonData.authType === 'credentials' && (
|
|
<div className="gf-form-inline">
|
|
<div className="gf-form">
|
|
<FormLabel
|
|
className="width-14"
|
|
tooltip="Credentials profile name, as specified in ~/.aws/credentials, leave blank for default."
|
|
>
|
|
Credentials Profile Name
|
|
</FormLabel>
|
|
<div className="width-30">
|
|
<Input
|
|
className="width-30"
|
|
placeholder="default"
|
|
value={options.jsonData.database}
|
|
onChange={onUpdateDatasourceOption(this.props, 'database')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
{options.jsonData.authType === 'keys' && (
|
|
<div>
|
|
{options.secureJsonFields.accessKey ? (
|
|
<div className="gf-form-inline">
|
|
<div className="gf-form">
|
|
<FormLabel className="width-14">Access Key ID</FormLabel>
|
|
<Input className="width-25" placeholder="Configured" disabled={true} />
|
|
</div>
|
|
<div className="gf-form">
|
|
<div className="max-width-30 gf-form-inline">
|
|
<Button
|
|
variant="secondary"
|
|
type="button"
|
|
onClick={onUpdateDatasourceResetOption(this.props, 'accessKey')}
|
|
>
|
|
Reset
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<div className="gf-form-inline">
|
|
<div className="gf-form">
|
|
<FormLabel className="width-14">Access Key ID</FormLabel>
|
|
<div className="width-30">
|
|
<Input
|
|
className="width-30"
|
|
value={secureJsonData.accessKey || ''}
|
|
onChange={onUpdateDatasourceSecureJsonDataOption(this.props, 'accessKey')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
{options.secureJsonFields.secretKey ? (
|
|
<div className="gf-form-inline">
|
|
<div className="gf-form">
|
|
<FormLabel className="width-14">Secret Access Key</FormLabel>
|
|
<Input className="width-25" placeholder="Configured" disabled={true} />
|
|
</div>
|
|
<div className="gf-form">
|
|
<div className="max-width-30 gf-form-inline">
|
|
<Button
|
|
variant="secondary"
|
|
type="button"
|
|
onClick={onUpdateDatasourceResetOption(this.props, 'secretKey')}
|
|
>
|
|
Reset
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<div className="gf-form-inline">
|
|
<div className="gf-form">
|
|
<FormLabel className="width-14">Secret Access Key</FormLabel>
|
|
<div className="width-30">
|
|
<Input
|
|
className="width-30"
|
|
value={secureJsonData.secretKey || ''}
|
|
onChange={onUpdateDatasourceSecureJsonDataOption(this.props, 'secretKey')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
{options.jsonData.authType === 'arn' && (
|
|
<div className="gf-form-inline">
|
|
<div className="gf-form">
|
|
<FormLabel className="width-14" tooltip="ARN of Assume Role">
|
|
Assume Role ARN
|
|
</FormLabel>
|
|
<div className="width-30">
|
|
<Input
|
|
className="width-30"
|
|
placeholder="arn:aws:iam:*"
|
|
value={options.jsonData.assumeRoleArn || ''}
|
|
onChange={onUpdateDatasourceJsonDataOption(this.props, 'assumeRoleArn')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
<div className="gf-form-inline">
|
|
<div className="gf-form">
|
|
<FormLabel
|
|
className="width-14"
|
|
tooltip="Specify the region, such as for US West (Oregon) use ` us-west-2 ` as the region."
|
|
>
|
|
Default Region
|
|
</FormLabel>
|
|
<Select
|
|
className="width-30"
|
|
value={regions.find(region => region.value === options.jsonData.defaultRegion)}
|
|
options={regions}
|
|
defaultValue={options.jsonData.defaultRegion}
|
|
onChange={onUpdateDatasourceJsonDataOptionSelect(this.props, 'defaultRegion')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="gf-form-inline">
|
|
<div className="gf-form">
|
|
<FormLabel className="width-14" tooltip="Namespaces of Custom Metrics.">
|
|
Custom Metrics
|
|
</FormLabel>
|
|
<Input
|
|
className="width-30"
|
|
placeholder="Namespace1,Namespace2"
|
|
value={options.jsonData.customMetricsNamespaces || ''}
|
|
onChange={onUpdateDatasourceJsonDataOption(this.props, 'customMetricsNamespaces')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default ConfigEditor;
|