You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
584 B
24 lines
584 B
import React from 'react';
|
|
import PromQueryField from './PromQueryField';
|
|
import { PromQueryEditorProps } from './types';
|
|
|
|
export function PromQueryEditorForAlerting(props: PromQueryEditorProps) {
|
|
const { datasource, query, range, data, onChange, onRunQuery } = props;
|
|
|
|
return (
|
|
<PromQueryField
|
|
datasource={datasource}
|
|
query={query}
|
|
onRunQuery={onRunQuery}
|
|
onChange={onChange}
|
|
history={[]}
|
|
range={range}
|
|
data={data}
|
|
data-testid={testIds.editor}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export const testIds = {
|
|
editor: 'prom-editor-cloud-alerting',
|
|
};
|
|
|