123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- import React, { SyntheticEvent } from 'react';
- import {
- DataSourcePluginOptionsEditorProps,
- onUpdateDatasourceJsonDataOptionChecked,
- SelectableValue,
- updateDatasourcePluginJsonDataOption,
- } from '@grafana/data';
- import {
- InlineField,
- InlineSwitch,
- EventsWithValidation,
- InlineFormLabel,
- LegacyForms,
- regexValidation,
- } from '@grafana/ui';
- import { PromOptions } from '../types';
- import { ExemplarsSettings } from './ExemplarsSettings';
- const { Select, Input, FormField } = LegacyForms;
- const httpOptions = [
- { value: 'POST', label: 'POST' },
- { value: 'GET', label: 'GET' },
- ];
- type Props = Pick<DataSourcePluginOptionsEditorProps<PromOptions>, 'options' | 'onOptionsChange'>;
- export const PromSettings = (props: Props) => {
- const { options, onOptionsChange } = props;
- // We are explicitly adding httpMethod so it is correctly displayed in dropdown. This way, it is more predictable for users.
- if (!options.jsonData.httpMethod) {
- options.jsonData.httpMethod = 'POST';
- }
- return (
- <>
- <div className="gf-form-group">
- <div className="gf-form-inline">
- <div className="gf-form">
- <FormField
- label="Scrape interval"
- labelWidth={13}
- inputEl={
- <Input
- className="width-6"
- value={options.jsonData.timeInterval}
- spellCheck={false}
- placeholder="15s"
- onChange={onChangeHandler('timeInterval', options, onOptionsChange)}
- validationEvents={promSettingsValidationEvents}
- />
- }
- tooltip="Set this to the typical scrape and evaluation interval configured in Prometheus. Defaults to 15s."
- />
- </div>
- </div>
- <div className="gf-form-inline">
- <div className="gf-form">
- <FormField
- label="Query timeout"
- labelWidth={13}
- inputEl={
- <Input
- className="width-6"
- value={options.jsonData.queryTimeout}
- onChange={onChangeHandler('queryTimeout', options, onOptionsChange)}
- spellCheck={false}
- placeholder="60s"
- validationEvents={promSettingsValidationEvents}
- />
- }
- tooltip="Set the Prometheus query timeout."
- />
- </div>
- </div>
- <div className="gf-form">
- <InlineFormLabel
- width={13}
- tooltip="You can use either POST or GET HTTP method to query your Prometheus data source. POST is the recommended method as it allows bigger queries. Change this to GET if you have a Prometheus version older than 2.1 or if POST requests are restricted in your network."
- >
- HTTP Method
- </InlineFormLabel>
- <Select
- aria-label="Select HTTP method"
- options={httpOptions}
- value={httpOptions.find((o) => o.value === options.jsonData.httpMethod)}
- onChange={onChangeHandler('httpMethod', options, onOptionsChange)}
- width={7}
- />
- </div>
- </div>
- <h3 className="page-heading">Misc</h3>
- <div className="gf-form-group">
- <div className="gf-form">
- <InlineField
- labelWidth={28}
- label="Disable metrics lookup"
- tooltip="Checking this option will disable the metrics chooser and metric/label support in the query field's autocomplete. This helps if you have performance issues with bigger Prometheus instances."
- >
- <InlineSwitch
- value={options.jsonData.disableMetricsLookup ?? false}
- onChange={onUpdateDatasourceJsonDataOptionChecked(props, 'disableMetricsLookup')}
- />
- </InlineField>
- </div>
- <div className="gf-form-inline">
- <div className="gf-form max-width-30">
- <FormField
- label="Custom query parameters"
- labelWidth={14}
- tooltip="Add Custom parameters to all Prometheus or Thanos queries."
- inputEl={
- <Input
- className="width-25"
- value={options.jsonData.customQueryParameters}
- onChange={onChangeHandler('customQueryParameters', options, onOptionsChange)}
- spellCheck={false}
- placeholder="Example: max_source_resolution=5m&timeout=10"
- />
- }
- />
- </div>
- </div>
- </div>
- <ExemplarsSettings
- options={options.jsonData.exemplarTraceIdDestinations}
- onChange={(exemplarOptions) =>
- updateDatasourcePluginJsonDataOption(
- { onOptionsChange, options },
- 'exemplarTraceIdDestinations',
- exemplarOptions
- )
- }
- />
- </>
- );
- };
- export const promSettingsValidationEvents = {
- [EventsWithValidation.onBlur]: [
- regexValidation(
- /^$|^\d+(ms|[Mwdhmsy])$/,
- 'Value is not valid, you can use number with time unit specifier: y, M, w, d, h, m, s'
- ),
- ],
- };
- export const getValueFromEventItem = (eventItem: SyntheticEvent<HTMLInputElement> | SelectableValue<string>) => {
- if (!eventItem) {
- return '';
- }
- if (eventItem.hasOwnProperty('currentTarget')) {
- return eventItem.currentTarget.value;
- }
- return (eventItem as SelectableValue<string>).value;
- };
- const onChangeHandler =
- (key: keyof PromOptions, options: Props['options'], onOptionsChange: Props['onOptionsChange']) =>
- (eventItem: SyntheticEvent<HTMLInputElement> | SelectableValue<string>) => {
- onOptionsChange({
- ...options,
- jsonData: {
- ...options.jsonData,
- [key]: getValueFromEventItem(eventItem),
- },
- });
- };
|